当前位置: 技术问答>linux和unix
Redhat9里定时关机的问题
来源: 互联网 发布时间:2015-06-26
本文导语: 我想让一台 redhat 90 的机器在 18:00 自动关机 ,请问该怎么做 ? 要写 shell 吗 ,怎么写 ? 请大虾们多指教 ! | 如果是每次启动(或者每天)都自动执行关机, 可以使用启动脚本 在/etc/rc.d/...
我想让一台 redhat 90 的机器在 18:00 自动关机 ,请问该怎么做 ?
要写 shell 吗 ,怎么写 ? 请大虾们多指教 !
要写 shell 吗 ,怎么写 ? 请大虾们多指教 !
|
如果是每次启动(或者每天)都自动执行关机,
可以使用启动脚本
在/etc/rc.d/rc.local中添加上述shutdown命令
可以使用启动脚本
在/etc/rc.d/rc.local中添加上述shutdown命令
|
crontab命令图形版:主菜单=》系统工具=》任务调度器程序 右键点击任务=》新建
在 程序栏输入:sudo shutdown -h 18:00
关于sudo命令:首先使用:su - 得到root权限; 然后运行visudo 添加到
# User privilege specification
root ALL=(ALL) ALL
下面,形式如下
username(你登录的用户名) ALL=(ALL) NOPASSWD: ALL
在 程序栏输入:sudo shutdown -h 18:00
关于sudo命令:首先使用:su - 得到root权限; 然后运行visudo 添加到
# User privilege specification
root ALL=(ALL) ALL
下面,形式如下
username(你登录的用户名) ALL=(ALL) NOPASSWD: ALL