아래와 같이 스왑 파일을 만들었습니다.https://wiki.archlinux.org/index.php/Swap#Swap_file_creation
최대 절전 모드로 전환하려고 하면 다음 오류가 발생합니다.
$ echo disk > /sys/power/state
echo: write error: no such device
또한 dmesg에서는 다음을 얻습니다.
[30721.352822] [drm] Reducing the compressed framebuffer size. This may lead to less power savings than a non-reduced-size. Try to increase stolen memory size if available in BIOS.
[30721.454735] acpi LNXPOWER:07: Turning OFF
[30721.454987] acpi LNXPOWER:02: Turning OFF
[30721.455365] acpi LNXPOWER:01: Turning OFF
[30721.455563] PM: Cannot find swap device, try swapon -a
[30721.455563] PM: Cannot get swap writer
[30721.553943] OOM killer enabled.
[30721.553944] Restarting tasks ... done.
에서 언급했듯이https://wiki.archlinux.org/index.php/Power_management/Suspend_and_hibernate#Hibernation_into_swap_file, 다음 커널 매개변수를 설정했습니다.
resume=UUID=2bfb4ccd-6b80-4806-8a08-4f1e67ef035f
resume_offset=148378880
이력서 오프셋 및 이력서 매개 변수 값을 가져오는 방법은 다음과 같습니다.
$ filefrag -v /swapfile
Filesystem type is: 9123683e
File size of /swapfile is 536870912 (131072 blocks of 4096 bytes)
ext: logical_offset: physical_offset: length: expected: flags:
0: 0.. 0: 148378880.. 148378880: 1:
1: 1.. 131071: 148378881.. 148509951: 131071: last,unwritten,eof
$ findmnt -no SOURCE,UUID -T /swapfile
/dev/mapper/nvme0n1p2[/root] 2bfb4ccd-6b80-4806-8a08-4f1e67ef035f
을(를 ) 사용하려고 하면 swap_offset
다음과 같은 문제가 발생합니다.
$ swap-offset /swapfile
ioctl(FIBMAP) failed: Invalid argument
그렇다면 BTRFS를 사용할 때 최대 절전 모드용 스왑 파일을 사용할 수 있습니까? 커널이 스왑 파일의 정확한 위치를 모르는 것 같습니다.
답변1
당신/농담(https://www.reddit.com/user/kjoke/) 나를 행복하게 만든다:
filefrag는 BTRFS의 오프셋을 잘못 계산하지만 올바른 오프셋을 계산하는 스크립트가 있습니다.https://github.com/osandov/osandov-linux/blob/master/scripts/btrfs_map_physical.c
gcc btrfs_map_physical.c -o btrfs_map_physical
스왑 파일의 첫 번째 물리적 오프셋을 다운로드하고 가져옵니다.
$ sudo ./btrfs-map-physical /swap | head -n2
FILE OFFSET EXTENT TYPE LOGICAL SIZE LOGICAL OFFSET PHYSICAL SIZE DEVID PHYSICAL OFFSET
0 regular 4096 607759892480 268435456 1 608833634304
여기: 608833634304
. 이 오프셋을 페이지 크기로 나눕니다.
$ getconf PAGESIZE
4096
그렇습니다 resume_offset
. 매개변수와 함께 이 값을 커널 매개변수로 608833634304 / 4096 = 148641024
추가 하고 재부팅하십시오. systemd가 커널 매개변수를 무시하고 오프셋을 잘못 계산하기 때문에 resume
그 후에도 여전히 실패하지만 작동합니다.systemd hibernate
echo disk > /sys/power/state