Linux-Kernel

使用多個交換分區時 Linux 恢復

  • June 29, 2018

如果 Linux 系統使用多個交換設備並掛起到磁碟,如何設置resume=核心參數?

這似乎不可能。

軟體暫停文件說:

Q: Does swsusp (to disk) use only one swap partition or can it use
multiple swap partitions (aggregate them into one logical space)?

A: Only one swap partition, sorry.

感謝Flow對連結的回答。

就像您只有一個交換設備一樣,即將一個分區指定為resume=. 核心命令行參數的核心文件resume清楚地表明它只需要一個設備。

resume=       [SWSUSP]          
             Specify the partition device for software suspend
             Format:
             {/dev/<dev> | PARTUUID=<uuid> | <int>:<int> | <hex>}

來源https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/admin-guide/kernel-parameters.txt?h=v4.17#n3767

有關掛起交換的更多資訊,請訪問https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/power/swsusp.txt?h= v4.17

引用自:https://unix.stackexchange.com/questions/341922