apollo ubuntu 如何設定休眠?

apollo ubuntu 如何設定休眠?

在 minipc nexenta S1 上,我使用此網站上基於 apollo 的 Ubuntu

http://linuxiumcomau.blogspot.it/

通常為了啟用休眠,我使用此過程

a) 下載 pm-utils

apt-get -y install pm-utils

b) 允許使用者編輯此文件

/etc/polkit-1/localauthority/50-local.d/com.ubuntu.enable-hibernate.pkla

與此內容

[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;org.freedesktop.login1.handle-hibernate-key;org.freedesktop.login1;org.freedesktop.login1.hibernate-multiple-sessions;org.freedesktop.login1.hibernate-ignore-inhibit
ResultActive=yes

c) 最後一個重要部分..編輯 /etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=/dev/sda1"

其中 sda1 是我的交換..

我也做了

update-grub2

d) 重新啟動後...

cat /proc/cmdline

\boot\vmlinuz-4.13.0-16-generic.efi.signed ro root=/dev/mmcblk1p2  quiet splash initrd=boot\initrd.img-4.13.0-16-generic

為什麼不受影響?

是用於 grub 之前的 refi 引導程式嗎?

答案1

找到解決方案

refind bootloader 包含核心選項

所以我們編輯/boot/refind_linux.conf

"Boot with standard options"  "ro root=/dev/mmcblk1p2  quiet splash resume=/dev/sda1"
"Boot to single-user mode"    "ro root=/dev/mmcblk1p2  quiet splash single"
"Boot with minimal options"   "ro root=/dev/mmcblk1p2"

和作品

cat /proc/cmdline 
\boot\vmlinuz-4.13.0-16-generic.efi.signed ro root=/dev/mmcblk1p2  quiet splash resume=/dev/sda1 initrd=boot\initrd.img-4.13.0-16-generic

相關內容