web-dev-qa-db-ja.com

GRUBブート設定で、resume =は何に使用されますか?

私はいつも/boot/grub/menu.lstのresume=/dev/fooエントリに気づき、それがスワップパーティションに対応することに気付きましたが、その使用に疑問を抱いたことはありません。

title SUSE Linux Enterprise Server 11 SP2 - 3.0.13-0.27 (default)
    root (hd0,0)
    kernel /boot/vmlinuz-3.0.13-0.27-default root=/dev/sda1 insmod=qla4xxx resume=/dev/sda2 crashkernel=256M-:128M showopts
    initrd /boot/initrd-3.0.13-0.27-default

今朝サーバーを再起動していたところ、Starting manual resume from diskというブートメッセージが表示されました。ある種の冬眠のような音。それでは、履歴書とは正確には何ですか?私はそれをグーグルしようとしています、しかし私が見ているすべてはLinux管理者のための履歴書/ CVです:)。

7
Banjer

から カーネルパラメータのリスト

resume=     [SWSUSP]
        Specify the partition device for software suspend

どこ

SWSUSP  Software suspend (hibernation) is enabled.

そう、それは冬眠のために使用されます。

6
Renan