![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
|
Tutorials & Tips The place to find Ubuntu related Tips & Tricks. |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
A Carafe of Ubuntu
![]() Join Date: Oct 2004
Location: Australia
Beans: 90
|
HOWTO: Using Cron to Update System
Here is a quick and hopefully informative way to use cron to update your system.
Cron is a scheduling program used often in many *nix distro to run automated tasks if your like me and are coming from windows it would equate to task scheduler in windows. cron's format is minute: hour: day of the month: day of the week: command: 30 22 * * 0 apt-get update && apt-get -y dist-upgrade -t warty-security The above example would tell cron to run a check for security updates every sunday at 10:30 pm *suggested by jdong* 30 22 * * 0 apt-get update This job would tell cron to update but you would be required to upgrade manually To make a cron job yourself type in an open console type: 1) crontab -e 2) press the i key to insert commands 3) input your commands using the above guide 4) press esc and then press :wq! to exit and save changes hopefully if all goes well you should now have setup cron to run a specific task at its appointed time if your not comfortable inputing the commands yourself there is a site that goes into more detail and has a tool to set up your commands for you. http://www.clockwatchers.com/cron_tool.html I hope this helps Cacofonix * updated to include sugestions by jdong Last edited by cacofonix; November 25th, 2004 at 12:56 AM.. |
|
|
|
|
|
#2 |
|
Just Give Me the Beans!
![]() Join Date: Oct 2004
Location: Virginia, USA
Beans: 42
Ubuntu Breezy 5.10
|
Re: How To use cron to update ubuntu
Although I won't use it because I perfer to do it myself. I even did it myself when running windows. This is a very good guide.
__________________
Don't confuse stupidity with bravery. One who relies on sight may not see at all. |
|
|
|
|
|
#3 |
|
Ultimate Coffee Grinder
![]() Join Date: Oct 2004
Location: Cambridge. MA
Beans: 5,063
Ubuntu 8.10 Intrepid Ibex
|
Re: How To use cron to update ubuntu
I don't think it's correct. apt-get dist-upgrade will just sit at a Y/n prompt indefinitely. Every night you run it, you'll get a new one...... You need apt-get -y dist-upgrade -t warty-security.
If you don't like for updates to apply without you knowing, you can always just set a cron job for apt-get update so you'll always have up to date sources. |
|
|
|
|
|
#4 |
|
A Carafe of Ubuntu
![]() |
Re: HOWTO: Using Cron to Update System
Although apt-get does have the '-y' option, many other commands do not. In that case, you can simply say:
Code:
yes 'y' | your -command -here
__________________
NIETS IS ONMOGELIJK! |
|
|
|
|
|
#5 |
|
5 Cups of Ubuntu
![]() Join Date: Oct 2006
Location: Shoreline, Washington
Beans: 40
Ubuntu 6.06 Dapper
|
Re: HOWTO: Using Cron to Update System
How can I extend this to dial up, say every Saturday night at midnight, do the update, then hangup?
I found the answer at this thread: http://ubuntuforums.org/showthread.php?t=207422 This thread has an elaborate script: http://ubuntuforums.org/showthread.php?t=197300 Last edited by jsandys; October 13th, 2006 at 06:17 PM.. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|