ubuntu14.04默认关闭休眠功能。但是休眠耗电极低,并且可以快速“开关机”,何乐而不为?通过简单的步骤就可以开启休眠功能。
首先,需要配置有swap分区(一般比物理内存稍大)。
然后在命令行中使用sudopm-hibernate测试是否可以正常休眠,如果可以从休眠中醒来并且之前的工作状态还保存着,那么恭喜,你具备了“休眠”的功能。即你可以通过命令行休眠了。
最后,在任务栏的电源图标中加入休眠选项:
编辑文件:com.ubuntu.desktop.pkla
gedit /var/lib/polkit-1/localauthority/10-vendor.d/com.ubuntu.desktop.pkla
将:
[Disable hibernate by default in upower]
Identity=unix-user:*
Action=org.freedesktop.upower.hibernate
ResultActive=no
[Disable hibernate by default in logind]
Identity=unix-user:*
Action=org.freedesktop.login1.hibernate
ResultActive=no
改为
[Re-enable hibernate by default in upower]
Identity=unix-user:*
Action=org.freedesktop.upower.hibernate
ResultActive=yes
[Re-enable hibernate by default in logind]
Identity=unix-user:*
Action=org.freedesktop.login1.hibernate
ResultActive=yes
重启系统,就成功啦!
树莓派--Raspbian启用root账户,禁用休眠:http://www.linuxdiyf.com/linux/15402.html
怎么让Ubuntu系统不进入休眠模式:http://www.linuxdiyf.com/linux/12691.html
设置Ubuntu 14.04自动休眠时间:http://www.linuxdiyf.com/linux/4959.html
Ubuntu技巧:Gnome小程序阻止自动休眠:http://www.linuxdiyf.com/linux/8643.html
Linux操作系统睡眠和休眠的二种方式:http://www.linuxdiyf.com/linux/179.html