Results 1 to 5 of 5

Thread: HOWTO: Using Cron to Update System

  1. #1
    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 05:56 AM.

  2. #2
    Join Date
    Oct 2004
    Location
    Virginia, USA
    Beans
    42
    Distro
    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. #3
    Join Date
    Oct 2004
    Location
    Cupertino, CA
    Beans
    5,092
    Distro
    Ubuntu 10.04 Lucid Lynx

    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.
    Quote Originally Posted by tuxradar
    Linux's audio architecture is more like the layers of the Earth's crust than the network model, with lower levels occasionally erupting on to the surface, causing confusion and distress, and upper layers moving to displace the underlying technology that was originally hidden

  4. #4
    Join Date
    Nov 2004
    Location
    Dresden, Germany
    Beans
    90
    Distro
    Ubuntu 10.04 Lucid Lynx

    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
    and it will answer all questions with 'y'.
    NIETS IS ONMOGELIJK!

  5. #5
    Join Date
    Oct 2006
    Location
    Shoreline, Washington
    Beans
    40
    Distro
    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 11:17 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •