赞
踩
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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。