ubuntu 每天定时开关机

定时关机方法:

编辑 /etc/crontab 添加一条命令:55 23 * * * root /sbin/shutdown -h now。即可实现每天 23:55 关机。

定时开机:

1、开机按提示进入 BIOS Setup,一般都是"Del"键

2、进入电源管理,一般都是"Power Management Setup",自己看英文

3、进入唤醒管理,一般都是"Set Wake Up Events"、"PM Wake Up Events",自己看英文

4、进入定时启动管理,一般都是"Resume By Alarm"、"Resume On Time",自己看英文,将它设置成"Enabled"

5、选择启动日期,这个自己看吧,有的有"Every day"选项,没有的一般就是"0"表示每天了,启动时间自己看去吧

6、按"F10"或者其他什么键保存,退出即可

Ubuntu 开机启动项设置

因为自己的电脑做了服务器,偶尔会关机给电脑休息,每次开机都要手动启动服务程序很麻烦,所以偷懒加到 linux 的开机启动项中。

命令:

$nano -W /etc/rc.local

修改配置文件:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

这里加上要启动的程序的绝对路径:

/usr/bin/python /home/orin-c/host/zhujiwu.py

exit 0


↙↙↙阅读原文可查看相关链接,并与作者交流