Linux 定时关机/重启计划

新增一条crontab配置如下:

00 01 * * 1,2,3,4,5 /sbin/shutdown -h now

linux下运行crontab -可能会提示你:

no crontab for root - using an empty one,然后会叫你“Select a editor ……”下面有几个选项,就是叫你选择编辑器,然后选 vim.tiny。
或直接进入编辑页面。
进入crontab编辑页面之后就直接”shift+:”,然后输入wq保存即可。然后一个新的crontab就生成了!生成可能需要一会。

Linux 关机/重启等命令区别

  • shutdown
  • reboot
  • init 0
  • halt
  • poweroff

遇到问题:

  1. no crontab for root - using an empty one

    执行select-editor

    1
    2
    3
    4
    5
    6
    7
    8
    9
    $ select-editor 
    Select an editor. To change later, run 'select-editor'.
    1. /bin/ed
    2. /bin/nano <---- easiest
    3. /usr/bin/vim.basic
    4. /usr/bin/vim.gnome
    5. /usr/bin/vim.tiny

    Choose 1-5 [2]: 3

参考资料:
第一次使用crontab linux
理解 Linux 中的 shutdown、poweroff、halt 和 reboot 命令