Find the answer to your Linux question:
Results 1 to 5 of 5
So at work I usually forget to shut down my computer at the end of the day 5:30 and they switch the breaker off at 6pm which cant be good ...
  1. #1
    Linux Newbie
    Join Date
    May 2009
    Location
    Kitchener, Ontario, Canada
    Posts
    187

    Shutting down linux at a specific time.

    So at work I usually forget to shut down my computer at the end of the day 5:30 and they switch the breaker off at 6pm which cant be good way to shut down a computer. So i was doing some googling and this is what i come up with.

    this is the example i found online
    Code:
    #crontab -e -u root
    Code:
    0 20 * * * /sbin/shutdown -h now
    since the above turns it down at 8pm i need to edit it to 5 30pm

    Code:
    0 17:30 * * * /sbin/shutdown -h now
    would this be correct?

  2. #2
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Posts
    1,230
    My method is quite primitive. Hope you get to know of a more efficient way

    Code:
    su -
    shutdown -h 120
    120 minutes and its off...
    nujinini
    Linux User #489667

  3. #3
    Linux Guru coopstah13's Avatar
    Join Date
    Nov 2007
    Location
    NH, USA
    Posts
    3,149

  4. #4
    Linux Newbie
    Join Date
    May 2009
    Location
    Kitchener, Ontario, Canada
    Posts
    187
    Quote Originally Posted by nujinini View Post
    My method is quite primitive. Hope you get to know of a more efficient way

    Code:
    su -
    shutdown -h 120
    120 minutes and its off...
    thats a bit different then what im looking for.

  5. #5
    Linux Newbie
    Join Date
    May 2009
    Location
    Kitchener, Ontario, Canada
    Posts
    187
    Quote Originally Posted by coopstah13 View Post

    Thanks this is what iwas looking for

    * * * * * command to be executed
    - - - - -
    | | | | |
    | | | | +----- day of week (0 - 6) (Sunday=0)
    | | | +------- month (1 - 12)
    | | +--------- day of month (1 - 31)
    | +----------- hour (0 - 23)
    +------------- min (0 - 59)

Posting Permissions

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