admin 管理员组

文章数量: 887007

linux笔记本关盖不关机,关闭盖子后笔记本电脑不会挂起

问题描述

我是Ubuntu 13.10的新用户。关闭笔记本电脑的机盖不会导致计算机进入挂起模式,这意味着每次我没有手动挂起计算机就关闭电池盖时,电池就会耗尽。

在电源管理中设置了正确的设置-将笔记本电脑悬吊在盖子上,以关闭交流电和直流电,但这些设置不会影响实际行为。

看来这是早在Ubuntu 11上对于许多用户来说都是一个常见问题-我能找到的唯一解决方案是以下解决方案。但是,作为Linux新用户,我不知道如何实际执行指令。如果有人可以提供其他详细信息,那将非常有帮助。

提前致谢。

/etc/acpi/events/lidbtn triggers /etc/acpi/lid.sh which triggers

/etc/acpi/local/lid.sh.post at the end of the script.

/etc/acpi/local/* allows you to add your own config (e.g. required for

wmii).

generate /etc/acpi/local/lid.sh.post

make it executable and add:

\#!/bin/bash

grep -q closed /proc/acpi/button/lid/*/state

if [ $? = 0 ]

then

/usr/sbin/pm-suspend

fi

wmii will now go to suspend mode when closing the lid. It'll

automatically wake up when opening the lid.

#!/bin/bash

load&

本文标签: linux笔记本关盖不关机 关闭盖子后笔记本电脑不会挂起