问题描述:希望ubuntu下电脑能够在合盖或者点击挂起时电脑是休眠状态,而不是直接关机,带来很多不便。通过自己查找的一些资料,发现以下办法基本上可以解决我的问题,希望能够对大家有帮助。
方法一:
方法一:
To make Ubuntu do nothing when laptop lid is closed:
1、Open the /etc/systemd/logind.conf file in a text editor as root, for example,
sudo -H gedit /etc/systemd/logind.conf
2、Add a line HandleLidSwitch=ignore (make sure it's not commented out!),
3、Restart the systemd daemon with this command:
sudo restart systemd-logind
or, from 15.04 onwards:
sudo service systemd-logind restart
方法二:
You can easily do it.
Edit /etc/systemd/logind.conf and set
HandleLidSwitch=hibernate
HandleSuspendKey=hibernate
You can also use hybrid-sleep instead of hibernate.
Don't forget to remove the # in front of the above two lines and also to reboot.
参考:
https://askubuntu.com/questions/828400/is-it-possible-to-make-16-04-hibernate-on-lid-close
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/121290.html