我一直遵循以下指南: http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/ 如何安装使用 LUKS 加密并双启动的 Ubuntu?
我已经按照后一个链接在加密的 LVM 分区上创建了一个 4G 交换分区,但不确定在 /etc/crypttab 文件中要使用的条目。
如果我运行:
blkid | grep swap
/dev/mapper/vgroot-lvswap: UUID="12345678987654321" TYPE=swap
是否需要
vgroot-lvswap UID=12345678987654321 /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
答案1
您的格式有效,/etc/crypttab
但请更新您UID
的UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
并且还要确保该名称vgroot-lvswap
是您运行时使用的名称sudo cryptsetup luksOpen .... name_of_device_mapper
!