要禁用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
请注意,禁用休眠功能可能导致一些功能受到限制或造成系统性能下降,因此在禁用前请确保了解潜在的影响。