Apollo 우분투에서 최대 절전 모드를 설정하는 방법은 무엇입니까?

Apollo 우분투에서 최대 절전 모드를 설정하는 방법은 무엇입니까?

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 부트로더에는 커널 옵션이 포함되어 있습니다.

그래서 우리는 /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

관련 정보