请帮忙。如果您知道 ubuntu 的解决方案,我会尝试一下。
我有一台联想 IdeaPad S10-3(英特尔Atom上网本)。安装 lubuntu 11.04 后,我发现系统在挂起后无法恢复。它只是挂起,我需要进行硬重置。
尝试实施各种措施均无济于事,因此现在我寻求一种关闭暂停的方法。破坏比建造更容易 =)
或者将挂起改为休眠。这样关闭笔记本就不会导致我硬重置。谢谢帮助
答案1
Lubuntu 11.04 使用 gnome-power-manager。因此,您可以使用 gconf-editor 来更改各种设置。
尝试安装 gconf-editor:
sudo apt-get install gconf-editor
然后运行编辑器
gconf-editor &
导航到树的这一部分并将暂停选项更改为您想要的任何操作 - 使用屏幕右下角描述的值。
答案2
我需要更进一步,在 virtualbox nt 上运行 magic jack;只希望显示器和硬盘速度减慢。编写了一个 hack/script /etc/pm/sleep.d/0000_virtualbox-winnt,如果虚拟机正在运行,基本上将挂起/休眠重定向到交流省电状态。
在阅读了许多脚本和这篇信息丰富的文章后。 https://wiki.ubuntu.com/PowerManagement
$ cat /etc/pm/sleep.d/0000_virtualbox-winnt
#!/bin/sh
# Stollen from unattended-upgrades script
# virtualbox winnt runs Magic Jack for phone service, attempting to keep this from
# hibernating or suspending durring the close of the lid.
#
# License: GPL-2
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin
if [[ ! `ps -ef | grep -q 'virtualbox.*winnt.*447f93e1-3603-4496-aaa0-38c4c56b7f38'` ]] ; then
exit 0
fi
case "${1}" in
suspend)
pm-powersave ac
exit 1
;;
hibernate)
pm-powersave ac
exit 1
;;
resume|thaw)
# nothing
;;
esac
答案3
在 Ubuntu Gnome 中,如果单击电池符号,则可以更改电源设置。其中一种可能性是定义关闭盖子时的操作。我不知道在 lubuntu 中是否相同