Re: gpg -random bytes

2002-11-08 Thread Danijel Tasov
On Thu, Nov 07, 2002 at 02:55:30PM -0600, Dan Nelson wrote:
> Make sure you have told FreeBSD to collect randomness info from its
> peripherals.  Put this in /etc/rc.conf:
> 
> rand_irqs="5 10 13"
> 
> Replace the numbers with the IRQs of your disk and network devices (you
> can get these from dmesg), and reboot.

Instead of rebooting your machine, you can also type

   for i in 5 10 13; do rndcontrol -s $i; done

as root.

bye,
Danijel Tasov

-- 
Danijel Tasov, [EMAIL PROTECTED]
6EA2 8A21 E875 0519 CFE7  781C 5944 8BA6 F96B 1EC3
()  ascii ribbon campaign - against html mail, vcards &
/\  microsoft attachments



msg08211/pgp0.pgp
Description: PGP signature


Re: Cronjob

2009-06-11 Thread Danijel Tasov
Paul Chvostek wrote:
>   0 1 28-31 * * test `date -v+1d '+%d'` -eq 1 && /path/to/script

You have to escape the percent sign in crontab with "\":

run.  The entire command portion of the line, up to a newline
or % character, will be executed by /bin/sh or by the shell
specified in the SHELL variable of the cronfile.
Percent-signs (%) in the command, unless escaped with
backslash (\), will be changed into newline characters, and
all data after the first % will be sent to the command as
standard input.

bye,
Da.Ta

___
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"