私は新しいUbuntu 13.10ユーザーです。ラップトップのふたを閉じても、コンピューターはサスペンドモードになりません。つまり、手動でコンピューターをサスペンドせずにふたを閉じるたびにバッテリーが切れます。
電源管理で適切な設定が設定されています-ACとDCの両方でラップトップを閉じてラップトップをサスペンドしますが、これらは実際の動作には影響しません。
これは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