mencoder freeze the video

2013-09-05 Thread Olivier Nicole
Hi,

I have a video surveillance system based on FreeBSD 9.1. I use mencoder
to capture the video from a USB camera, but it usually freeze after few
seconds.

I use the following command to launch the capture, I stop it by sending
a signal.

/usr/local/bin/mencoder tv:// -tv driver=v4l2:outfmt=mjpeg -nosound -ovc
lavc -ofps 10 -lavcopts vcodec=mpeg4:vbitrate=400 -o file -really-quiet

What to change to avoid the freeze of the video?

How to stop the capture without generating a core dump?

Best regards,

Olivier
-- 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


email code confirmation

2013-09-05 Thread vusani gapara
vgap...@gmail.com send me my confirmation of my email address
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: The logo at boot (Nakatomi Socrates BSD 9.2)

2013-09-05 Thread Patrick Dung



 
On Wed, 4 Sep 2013, Lowell Gilbert wrote: Patrick Dung patrick_dkt at 
yahoo.com.hk writes: Do you know what is this logo means, or the story 
behind it? I thought the BSD daemon (logo) has been around for many years in 
the past. It's a movie reference (Die Hard). The Beastie logo is still 
there, in the /boot directory, if you want it.  Or the standard orb, by 
setting it in /boot/loader.conf: 
loader_logo=orb 

Thanks for the info.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Question about those special (countdown numbers) at shutdown / sync

2013-09-05 Thread Patrick Dung
Hello!

I am curious about the special (count down numbers) at shutdown / sync.

Those nubmers is like 8 8 8 8 2 1 2 1 0 0 0 0.

Actually what do those numbers mean?

Thanks and regards,
Patrick Dung
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Question about those special (countdown numbers) at shutdown / sync

2013-09-05 Thread Polytropon
On Thu, 5 Sep 2013 21:30:29 +0800 (SGT), Patrick Dung wrote:
 I am curious about the special (count down numbers) at shutdown / sync.
 
 Those nubmers is like 8 8 8 8 2 1 2 1 0 0 0 0.
 
 Actually what do those numbers mean?

Those numbers show you how many buffers have to be synced
until the system is ready to finally shut down and power off.
This makes sure no pending hard disk operations will be
left and forgotten in memory.

The important text displayed prior to the numbers is:

Syncing disks, buffers remaining... 

You can find it here: /usr/src/sys/kern/kern_shutdown.c
around line 330 (8-STABLE/i386 here).




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


What's happening to my asciidoc?

2013-09-05 Thread David Demelier
Hi,

I've been using asciidoc for a while, I've updating it to
asciidoc-8.6.8_1. But now I can't generate any correct documentation.
It does not even add :toc: field.

For instance the following example should generate a HTML with its
popular blue theme :

Test
===
:Author: David
:toc:

= Title

Some data

== Title 2

Some data

For me, it produces a very light HTML file with no table of content
and everything is black, I also notice that it does not append any CSS
code.

Does anyone already have this issue?

Cheers,

-- 
Demelier David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's happening to my asciidoc?

2013-09-05 Thread Warren Block

On Thu, 5 Sep 2013, Warren Block wrote:


On Thu, 5 Sep 2013, David Demelier wrote:


Hi,

I've been using asciidoc for a while, I've updating it to
asciidoc-8.6.8_1. But now I can't generate any correct documentation.
It does not even add :toc: field.

For instance the following example should generate a HTML with its
popular blue theme :

Test
===
:Author: David
:toc:

= Title

Some data

== Title 2

Some data

For me, it produces a very light HTML file with no table of content
and everything is black, I also notice that it does not append any CSS
code.

Does anyone already have this issue?


It's working for me, I used it last night.


Here is the command I use (generated from a Makefile), broken into 
separate lines:


asciidoc \
  -a data-uri \
  -a icons \
  -a iconsdir=/usr/local/etc/asciidoc/images/icons \
  -d article \
  -a stylesheet=~/docs/stylesheets/wb-html.css \
  -a toc \
  -a revdate=2013-09-05 \
  -a year=2013 \
  -a max-width=80em \
  pxe.txt

That stylesheet is just my changes to the default, which change the link 
visited color from pink to red and add rounded corners to listing 
blocks.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD Squid 3.2 Reverse Proxy with HTTPS

2013-09-05 Thread Daniel Duerr
Hi Dean,

Just stumbled upon your post.  I'm encountering the exact same issue as you 
with my freebsd 8.3 squid-3.2.13 server.  Have you learned anything new on this 
issue?

Best,
Daniel


--
daniel duerr   |   president   |   ouido.net
d...@ouido.net  |  +1 (831) 531-2272 x103
Managed hosting services for Business



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Question about those special (countdown numbers) at shutdown / sync

2013-09-05 Thread Patrick Dung
Thanks for the answer.

That is cool and unique.




 From: Polytropon free...@edvax.de
To: Patrick Dung patrick_...@yahoo.com.hk 
Cc: freebsd-questions@freebsd.org freebsd-questions@freebsd.org 
Sent: Thursday, September 5, 2013 9:42 PM
Subject: Re: Question about those special (countdown numbers) at shutdown / sync
 

On Thu, 5 Sep 2013 21:30:29 +0800 (SGT), Patrick Dung wrote:
 I am curious about the special (count down numbers) at shutdown / sync.
 
 Those nubmers is like 8 8 8 8 2 1 2 1 0 0 0 0.
 
 Actually what do those numbers mean?

Those numbers show you how many buffers have to be synced
until the system is ready to finally shut down and power off.
This makes sure no pending hard disk operations will be
left and forgotten in memory.

The important text displayed prior to the numbers is:

    Syncing disks, buffers remaining... 

You can find it here: /usr/src/sys/kern/kern_shutdown.c
around line 330 (8-STABLE/i386 here).




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Invitation: Hi Dear @ Thu Sep 5, 2013 12:30pm - 1:30pm (anitaabdall2...@gmail.com)

2013-09-05 Thread anitaabdall2...@gmail.com

You have been invited to the following event.

Title: Hi Dear
Hi Dear
How are you today? I feel like communicating with you, my name is Anita,  
female single 23 years of age, It will be my pleasure to know you and  
cultivate a healthy friendship with you.I have great interest in making new  
friendship, my
hobbies are reading, traveling,swimming and dancing.Today i found your  
e-mail id, then i took the opportunity to write to you as i will really  
want us to be good friends and I will so much appreciate it if we can click  
together as one great friend.I will be very glad if you can contact me  
thorough my email address,(anita_12abda...@hotmail.com) and i will tell you  
more about myself including with my pictures in my next mail Remember the  
distance,color or age does not matter but love matters a lot in life.

Yours Sincerely,
Anita
When: Thu Sep 5, 2013 12:30pm – 1:30pm Eastern Time
Calendar: anitaabdall2...@gmail.com
Who:
(Guest list has been hidden at organizer's request)

Event details:  
https://www.google.com/calendar/event?action=VIEWeid=NWRwcGd0ZWQ5YmcyYzVjM2MwaDgyMjZ1bWMgcXVlc3Rpb25zQGZyZWVic2Qub3Jntok=MjUjYW5pdGFhYmRhbGwyMDExQGdtYWlsLmNvbTY3ZDA0ZGJkZWYzYmYwOWQ3MzkxYzU5ZjhjNjYxYTQ3YmM5OTY3OGMctz=America/New_Yorkhl=en


Invitation from Google Calendar: https://www.google.com/calendar/

You are receiving this courtesy email at the account questi...@freebsd.org  
because you are an attendee of this event.


To stop receiving future notifications for this event, decline this event.  
Alternatively you can sign up for a Google account at  
https://www.google.com/calendar/ and control your notification settings for  
your entire calendar.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: What's happening to my asciidoc?

2013-09-05 Thread Warren Block

On Thu, 5 Sep 2013, David Demelier wrote:


Hi,

I've been using asciidoc for a while, I've updating it to
asciidoc-8.6.8_1. But now I can't generate any correct documentation.
It does not even add :toc: field.

For instance the following example should generate a HTML with its
popular blue theme :

Test
===
:Author: David
:toc:

= Title

Some data

== Title 2

Some data

For me, it produces a very light HTML file with no table of content
and everything is black, I also notice that it does not append any CSS
code.

Does anyone already have this issue?


It's working for me, I used it last night.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: The logo at boot (Nakatomi Socrates BSD 9.2)

2013-09-05 Thread David Demelier
On 05.09.2013 14:59, Patrick Dung wrote:
 
 
 
  
 On Wed, 4 Sep 2013, Lowell Gilbert wrote: Patrick Dung patrick_dkt at 
 yahoo.com.hk writes: Do you know what is this logo means, or the story 
 behind it? I thought the BSD daemon (logo) has been around for many years 
 in the past. It's a movie reference (Die Hard). The Beastie logo is 
 still there, in the /boot directory, if you want it.  Or the standard orb, 
 by setting it in /boot/loader.conf: 
 loader_logo=orb 
 
 Thanks for the info.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
 

Yes it's a joke for 9.2 RELEASE, some (including me) explained our
disappointment about this but we must keep it for other users for
surprise :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Bsnmp disk/partition use. How ?

2013-09-05 Thread Michał Jędrzejczak
Hello.
I want to use bsnmp, to this time I used net-snmp.

In snmpd.conf(net-snmp) I had :

disk / 25%
disk /usr 15%
disk /var 20%
disk /tmp 20%

I want to have this same in  bsnmpd (snmpd.conf).
I've bsnmp-ucd but don't know how configure with this same way.

Any suggestions are welcomed.

Regards
MJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD Squid 3.2 Reverse Proxy with HTTPS

2013-09-05 Thread dweimer

On 09/05/2013 7:24 pm, Daniel Duerr wrote:

Hi Dean,

Just stumbled upon your post.  I'm encountering the exact same issue
as you with my freebsd 8.3 squid-3.2.13 server.  Have you learned
anything new on this issue?

Best,
Daniel


--
daniel duerr   |   president   |   ouido.net
d...@ouido.net  |  +1 (831) 531-2272 x103
Managed hosting services for Business



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org


Well Yes and No, I never did find the exact cause or fix, but when I 
tried the Squid 3.3 after the FreeBSD port was available on 9.1 the 
problem was gone.


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Paper cup,Drinking straws, fork, Knife and Other cutlery Supply shared an album with you.

2013-09-05 Thread Paper cup, Drinking straws, fork, Knife and Other cutlery Supply

Dear Manager:

We are a company focused on food package. and What we do is Just Helping  
you to save your cost.


Now we can supply :

1. Single wall paper cup. Double PE .Hot Paper cups. Double Wall paper  
cups. Cold Drinking cups, Ripple Wall cups.  Paper box.

 2. Drinking straws , Flexible straws. Straight straws.
3. Plastic cups. PET cold cups
4. Plastic spoon. fork, Knife and Other cutlery.

We know that buiness  include: Quality. Price. Delivery time. Payment  
Terms. And Service.


We welcome you to do customized cups and any enquiries. samples for free.

Best Regards

Jeff

https://picasaweb.google.com/lh/sredir?uname=104045934863533113023target=ALBUMid=5920333617939771089authkey=Gv1sRgCPqsyKSI_5uc0AEinvite=CJTH9aUDfeat=email
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Invitation: Hi Dear ! @ Fri Sep 6, 2013 12:30am - 1:30am (linabdall...@gmail.com)

2013-09-05 Thread linabdall...@gmail.com

You have been invited to the following event.

Title: Hi Dear !
Hi Dear !

How are you doing today,hope fine,My name is Lina Abdalla and i am a girl  
and decided to extend my greetings to you. But I do have the mind that you  
could be a nice person is my believe and there are nice people out there  
who can appreciate the value of friendship.and i will like to be your  
friend even more than that,but as time goes on we will know better.


I will be very glad if you can contact me through my email address, and i  
will tell you more about myself here is my adress(linab_da...@outlook.com)  
Remember the distance,color or age does not matter but love matters a lot  
in life. I am waiting for your reply, Lina

When: Fri Sep 6, 2013 12:30am – 1:30am Eastern Time
Calendar: linabdall...@gmail.com
Who:
(Guest list has been hidden at organizer's request)

Event details:  
https://www.google.com/calendar/event?action=VIEWeid=NzFlZHJrcjVkbzcxdW5zNXY0OHNtYm1ldGcgZnJlZWJzZC1xdWVzdGlvbnNAZnJlZWJzZC5vcmctok=MjIjbGluYWJkYWxsYTEwQGdtYWlsLmNvbWJkMDk0MzY1MWUyZDEyNTc3MjFmYmUyMTQwNDkyY2E2MGNhOTFiMGIctz=America/New_Yorkhl=en


Invitation from Google Calendar: https://www.google.com/calendar/

You are receiving this courtesy email at the account  
freebsd-questions@freebsd.org because you are an attendee of this event.


To stop receiving future notifications for this event, decline this event.  
Alternatively you can sign up for a Google account at  
https://www.google.com/calendar/ and control your notification settings for  
your entire calendar.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org