我想让我的 Ubuntu PC 在 10 分钟不活动后挂起,但它必须从午夜到早上 6:05 开启并保持开启状态。有什么建议吗?
答案1
前往System->Controll Center->Power Management Preferences
并选择Put computer to sleep when inactive
10分钟。
您可以使用命令自动唤醒您的计算机rtcwake
。
请看这里:
http://www.howtogeek.com/121241/how-to-make-your-linux-pc-wake-from-sleep-automatically/
您还设置了每天运行的 计时器(首先运行sudo su -
) 。/etc/crontab
0 0 * * * rtcwake -m mem -l -t $(date +%s -d ‘tomorrow 00:00’)
5 6 * * * echo mem > /sys/power/state`
抱歉回放晚了,我昨天很忙。