在Linux系統中,可以通過設置系統服務或者使用定時任務來讓服務器掛機。以下是兩種常用的方法:
設置系統服務:
[Unit]
Description=Shutdown the server
[Service]
Type=oneshot
ExecStart=/sbin/shutdown -h now
[Install]
WantedBy=multi-user.target
/etc/systemd/system/
目錄下。sudo systemctl enable shutdown.service
sudo systemctl start shutdown.service
sudo systemctl stop shutdown.service
來取消掛機操作。使用定時任務:
crontab -e
命令編輯當前用戶的定時任務。0 0 * * 0 /sbin/shutdown -h now
通過以上方法設置好后,服務器會在指定時間自動執行關機操作,實現掛機的效果。