要禁用Linux系統的休眠功能,可以通過命令行或配置文件進行設置。以下是兩種常用的方法:
方法一:通過命令行
sudo systemctl suspend
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
方法二:通過配置文件
sudo nano /etc/systemd/logind.conf
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
請注意,禁用休眠功能可能導致一些功能受到限制或造成系統性能下降,因此在禁用前請確保了解潛在的影響。