升级前,混合暂停功能在 13.10 中有效,但现在不再有效。尝试了此处提到的两种方法 如何默认使用 pm-suspend-hybrid 而不是 pm-suspend? 但没有运气
支持测试结果良好,pm-suspend 和 pm-hibernate 均按预期工作,我只是无法让它自行从挂起转换到休眠状态。
机器是Thinkpad t430s。
有谁能在 14.04 上运行这个软件,可以分享他们的配置吗?
谢谢!
答案1
对于“真正的”混合暂停,它从一开始就将映像写入磁盘和 RAM,其优点是恢复速度总是很快,并且机器不会在短时间内被唤醒并真正进入休眠状态。要使用它,请将以下内容粘贴到/etc/pm/config.d/00-use-suspend-hybrid文件:
# WORKAROUND: always set the default hibernate mode first (normal mode)
# (not required if you have the patch mentioned by Rohan below (http://askubuntu.com/a/344879/169))
HIBERNATE_MODE=platform
# Always use hibernate instead of suspend, but with "suspend to both"
if [ "$METHOD" = "suspend" ]; then
METHOD=hibernate
HIBERNATE_MODE=suspend
fi
# Make sure to use the kernel's method, in case uswsusp is installed etc.
SLEEP_MODULE=kernel