问题描述
我想关闭笔记本电脑的盖子成为no-op。我怎样才能做到这一点?
最佳解决思路
13.10 – 16.04:
当笔记本电脑盖关闭时,使Ubuntu不做任何事情:
-
例如,以root身份在文本编辑器中打开
/etc/systemd/logind.conf
文件,sudo -H gedit /etc/systemd/logind.conf
-
添加一行
HandleLidSwitch=ignore
(确保它没有被注释掉!), -
使用以下命令重新启动systemd守护进程:
sudo restart systemd-logind
或从15.04起:
sudo service systemd-logind restart
另见:Ubuntu Server 13.10 now goes to sleep when closing laptop lid
次佳解决思路
11.04及更早版本:
笔记本电脑盖关闭时不做任何事情(连接外部显示器时有帮助):
-
Alt
+F2
并输入:gconf-editor
-
应用程序> gnome-power-manager>纽扣
-
将
lid_ac
和lid_battery
设置为nothing
要么
1.使用交流电源时,笔记本电脑盖关闭时不做任何操作:gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_ac nothing
2.使用电池电源时,笔记本电脑盖关闭时不做任何操作:gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_battery nothing
笔记本电脑盖关闭时的空白屏幕(最好在没有连接外接显示器的情况下):
-
系统>首选项>能源管理
-
在AC电源(电池电量)上>>操作
-
笔记本电脑盖关闭时:空白屏幕
要么
1.使用交流电源时,笔记本电脑盖关闭时出现黑屏:gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_ac blank
2.打开电池电源时,笔记本电脑盖关闭时出现黑屏:gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_battery blank
第三种解决思路
11.10至12.04:
您可以在电源设置中选择”Do Nothing”。打开破折号(超级键),搜索”power”,然后在下拉列表中选择正确的选项。请注意,关闭盖子实际上会关闭屏幕,加上任何外部显示器:
如果您移动鼠标,则任何连接的显示器都将在笔记本电脑关闭时恢复供电。这将成为主要监视器。
第四种思路
Ubuntu 15.10 – Ubuntu 16.10
/etc/UPower/UPower.conf
中的IgnoreLid=true
-
在终端做:
sudoedit /etc/UPower/UPower.conf
-
将IgnoreLid更改为
IgnoreLid=true
-
保存并退出编辑器。
-
重新启动UPower服务:
service upower restart
第五种思路
11.04和以前的版本
复制来自http://ubuntuforums.org/showthread.php?t=1319921&highlight=close+laptop+lid的第一个给定答案
在终端(应用程序 – >附件 – >终端)中,键入:gconf-editor
导航至应用程序 – > gnome-power-manager – >按钮并将lid_ac和/或lid_battery设置为”nothing”(不带引号)。
第六种思路
我有14.04.1 LTS,Trusty Tahr。
什么不适合我:
-
例如,以root身份在文本编辑器中打开/etc/systemd/logind.conf文件,
sudo -H gedit /etc/systemd/logind.conf
添加一行
HandleLidSwitch=ignore
(确保它没有被注释掉!),使用以下命令重新启动systemd守护进程:
sudo restart systemd-logind
-
编辑gConf
使用交流电源时,笔记本电脑盖关闭时不做任何事情:
gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_ac nothing
使用电池电源时,笔记本电脑盖关闭时不做任何操作:
gconftool-2 -t string -s /apps/gnome-power-manager/buttons/lid_battery nothing
什么对我有效:
在/etc/UPower/UPower.conf
中设置IgnoreLid=true
第七种思路
某些笔记本电脑和显示器存在一个缺陷,使得在笔记本电脑的盖子关闭时,Ubuntu不尊重”do nothing”设置。我一直无法找到一个完整的解决方案,但也许有一些与this link有关的地方提示这个文件:/etc/default/acpi-support
并使用:
gconftool-2 -t string /apps/gnome-power-manager/buttons/lid_ac -s "blank"
gconftool-2 -t string /apps/gnome-power-manager/buttons/lid_battery -s "blank"
第八种思路
对于Saucy:
编辑/etc/systemd/logind.conf
并设置HandleLidSwitch=lock
锁定盖子上的屏幕关闭(但不挂起),或者HandleLidSwitch=ignore
甚至不锁定屏幕。
这是由于上游GNOME的变化。请参阅GNOME bug 687277以获取此更改的基本原理。
第九种思路
11.04和以前的版本
你也可以去system->preferences->power management
在靠近窗口底部的位置,您会看到一个下拉列表,您可以选择系统在关闭盖子时的操作
第十种思路
12.04
在系统设置中,打开Brightness&锁。在该页面上,取消选中底部的复选框,该复选框显示“从挂起状态唤醒时需要密码”。