Initramfsが更新されるたびに、次のようなメッセージが表示されます。
I: The initramfs will attempt to resume from /dev/zram1
I: (UUID=1d4b8573-7eee-43c9-a02a-10a65fc17b8a)
I: Set the RESUME variable to override this.
ただし、スワップパーティションはすべて zram デバイスであるため、再開を無効にしたいと思います。どうやってやるの?
RESUME=none
をinitramfs構成に追加することにより、スワップデバイスからの再開を無効にできます。
これを/etc/initramfs-tools/conf.d/noresume.conf
という名前のファイルに入れます:
# Disable resume (this system has no swap)
RESUME=none