不知道大家對Linux 自動喚醒和關閉有多少理解,本文主要介紹了Linux 自動喚醒和關閉的實現方法,需要的朋友可以參考下,希望能幫助到大家。
一.系統休眠(crontab)
範例說明(建立一個root 定時任務實作每天晚上11 點15 分定時關機):
# crontab -e -u root # m h dom mon dow command 15 23 * * * /sbin/shutdown -h now
範例說明(僅在週一至週五執行)
1 15 23 * * 1-5 /sbin/shutdown -h now
另外可以直接在/etc/crontab檔案中新增定時服務
15 23 * * 1-5 root shutdown -h now
二. 喚醒(Wake-On-LAN)
1 . 查看是否直接Wake-On-LAN和開啟,必須支援的功能是g
# ethtool eth0 | grep -i wake-on Supports Wake-on: pumbg Wake-on: g
2. 啟動g(ps:這條指令可能會在重啟後失效)
# ethtool -s eth0 wol g
3.新增cron保證每次重開機後開啟g
@reboot /usr/bin/ethtool -s eth0 wol g
大家學會了嗎?趕快動手嘗試。
相關推薦:
以上是關於Linux 自動喚醒和關閉的實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!