我想每周重启一次我的Raspberry PI。要做到这一点,我已将shutdown -r now
添加到crontab
,但这不起作用(当我检查uptime
时,我会像23天一样得到smt)。
我编辑的命令crontab
:
# log in as pi user via SSH
sudo -i
crontab -e
# in crontab:
0 5 * * 1 sudo shutdown -r now
当我立即检查uptime
时,我得到:
13:52:16 up 23 days, 21:21, 1 user, load average: 0.87, 0.92, 0.95
PS
我正在运行 RaspBMC
答案 0 :(得分:3)
在RaspBMC中默认禁用Cron作业。您需要在
下激活它们Task
并且作为旁注,而不是使用
启动新的root shellPrograms > Raspbmc Settings > System Configuration > Service Management > Cronjob Scheduler
你应该这样做:
sudo -i
crontab -e
编辑crontab文件。