我是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=$(cat /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0A:00/power_supply/BAT0/capacity)
min_load=20
if [ $load <= min_load ]; then
pm-suspend
fi