Re: [gentoo-user] Nightly emerge sync

2006-05-17 Thread Bo Ørsted Andresen
On Monday 15 May 2006 16:51, Timothy A. Holmes wrote:
 Can someone please point me to a reference that will show me now to
 configure my vixie cron to do a nightly emerge sync?

 I know it can be done, however I have not yet come up with the necessary
 instructions

http://www.gentoo.org/doc/en/cron-guide.xml

-- 
Bo Andresen


pgpK7oJpu6LyP.pgp
Description: PGP signature


RE: [gentoo-user] Nightly emerge sync

2006-05-17 Thread Timothy A. Holmes

 -Original Message-
 From: Bo Ørsted Andresen [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 17, 2006 9:09 AM
 To: gentoo-user@lists.gentoo.org
 Subject: Re: [gentoo-user] Nightly emerge sync
 
 On Monday 15 May 2006 16:51, Timothy A. Holmes wrote:
  Can someone please point me to a reference that will show me now to
  configure my vixie cron to do a nightly emerge sync?
 
  I know it can be done, however I have not yet come up with the necessary
  instructions
 
 http://www.gentoo.org/doc/en/cron-guide.xml
 
 --
 Bo Andresen




Thanks Bo - -I appreciate it



Timothy A. Holmes
IT Manager / Network Admin / Web Master / Computer Teacher
 
Medina Christian Academy
A Higher Standard...
 
Jeremiah 33:3
Jeremiah 29:11
Esther 4:14


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Pablo Antonio
On 10:51 Mon 15 May , Timothy A. Holmes wrote:
 Can someone please point me to a reference that will show me now to
 configure my vixie cron to do a nightly emerge sync?
 
 I know it can be done, however I have not yet come up with the necessary
 instructions

Well, you'll be amazed by how easy it is to do it :)

Just log in as root and type 'crontab -e' to edit the crontab. There you
should have something like:
* * * * * emerge --sync

Each '*' represents a field, and they have the following order:
1) Minutes.
2) Hour.
3) Day of month.
4) Month.
5) Day of week.

More on this can be found on the Internet or by reading the man pages:
cron and crontab.

 
 Thank you
 
 TIM
 
 
 Timothy A. Holmes
 IT Manager / Network Admin / Web Master / Computer Teacher
  
 Medina Christian Academy
 A Higher Standard...
  
 Jeremiah 33:3
 Jeremiah 29:11
 Esther 4:14
 
 
 
 -- 
 gentoo-user@gentoo.org mailing list

-- 
Pablo Antonio (AKA crazy2k)
http://www.pablo-a.com.ar/

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Daniel da Veiga

On 5/15/06, Timothy A. Holmes [EMAIL PROTECTED] wrote:

Can someone please point me to a reference that will show me now to
configure my vixie cron to do a nightly emerge sync?

I know it can be done, however I have not yet come up with the necessary
instructions


man cron
man crontab
man 5 crontab

Good luck,

--
Daniel da Veiga
Computer Operator - RS - Brazil
-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCM/IT/P/O d-? s:- a? C++$ UBLA++ P+ L++ E--- W+++$ N o+ K- w O M- V-
PS PE Y PGP- t+ 5 X+++ R+* tv b+ DI+++ D+ G+ e h+ r+ y++
--END GEEK CODE BLOCK--

--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Timothy A. Holmes
 On 5/15/06, Timothy A. Holmes [EMAIL PROTECTED] wrote:
  Can someone please point me to a reference that will show me now to
  configure my vixie cron to do a nightly emerge sync?
 
  I know it can be done, however I have not yet come up with the
necessary
  instructions
 
 man cron
 man crontab
 man 5 crontab
 
 Good luck,
 
 --
 Daniel da Veiga
 Computer Operator - RS - Brazil



[Timothy A. Holmes] 

Thank you all - its working - THANKS!!!


Timothy A. Holmes
IT Manager / Network Admin / Web Master / Computer Teacher
 
Medina Christian Academy
A Higher Standard...
 
Jeremiah 33:3
Jeremiah 29:11
Esther 4:14


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Willie Wong
On Mon, May 15, 2006 at 11:47:00AM -0300, Penguin Lover Pablo Antonio squawked:
 On 10:51 Mon 15 May , Timothy A. Holmes wrote:
  Can someone please point me to a reference that will show me now to
  configure my vixie cron to do a nightly emerge sync?
  
  I know it can be done, however I have not yet come up with the necessary
  instructions
 
 Well, you'll be amazed by how easy it is to do it :)
 
 Just log in as root and type 'crontab -e' to edit the crontab. There you
 should have something like:
 * * * * * emerge --sync
 

And don't just put something like the above in your crontab. You want
something like

0 1 * * * emerge --sync
or something (the example here give 1am every day). If you put just
five *s, the rsync server would be very, very annoyed at you. 

W
-- 
I'm a little teapot short and stout, here is my handle and here is
my ... other ... handle ... OH GOD I'M A SUGARPOT!! ~Mnemennth
Sortir en Pantoufles: up 184 days,  8:44
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Neil Bothwick
On Mon, 15 May 2006 10:51:06 -0400, Timothy A. Holmes wrote:

 Can someone please point me to a reference that will show me now to
 configure my vixie cron to do a nightly emerge sync?

echo '#!/bin/bash' /etc/cron.daily/emerge-sync
echo 'emerge --sync' /etc/cron.daily/emerge-sync
chmod +x /etc/cron.daily/emerge-sync

For a more useful output, emerge eix and replace the second line with
echo 'eix-sync' /etc/cron.daily/emerge-sync


-- 
Neil Bothwick

Top Oxymorons Number 42: Airline Food


signature.asc
Description: PGP signature


Re: [gentoo-user] Nightly emerge sync

2006-05-15 Thread Pablo Antonio
On 12:18 Mon 15 May , Willie Wong wrote:
 On Mon, May 15, 2006 at 11:47:00AM -0300, Penguin Lover Pablo Antonio 
 squawked:
  On 10:51 Mon 15 May , Timothy A. Holmes wrote:
   Can someone please point me to a reference that will show me now to
   configure my vixie cron to do a nightly emerge sync?
   
   I know it can be done, however I have not yet come up with the necessary
   instructions
  
  Well, you'll be amazed by how easy it is to do it :)
  
  Just log in as root and type 'crontab -e' to edit the crontab. There you
  should have something like:
  * * * * * emerge --sync
  
 
 And don't just put something like the above in your crontab. You want
 something like
 
 0 1 * * * emerge --sync
 or something (the example here give 1am every day). If you put just
 five *s, the rsync server would be very, very annoyed at you. 
 

Yeah, sorry for that. I should've changed that to more convenient values.

-- 
Pablo Antonio (AKA crazy2k)
http://www.pablo-a.com.ar/

-- 
gentoo-user@gentoo.org mailing list