我想我想要的是直截了当的。
在 23 小时 59 分钟后重新启动我的 Raspberry Pi 的 Python 脚本。我之所以尝试这样做,而不是使用 cron 作业设置时间,是因为 Pi 没有用于时钟的板载电池,所以我不在乎时间是什么(如果连接到互联网,它将获取当前时间) ,从脚本开始倒计时 23 小时 59 分钟。
这是据我所知;
def restart():
SendEmail = SendEmail "SYSTEM RESTART", "ncam.py auto restart initiated" msg['Subject'], body)
command = "/usr/bin/sudo /sbin/shutdown -r now"
process = subprocess.Popen(command.split(), stdout=subprocess.PIPE)
output = process.communicate()[0]
另外我想用上面设置的参数给自己发送一封电子邮件。