我一直在遵循以下指南:http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/ 我如何安装Ubuntu加密的LUKS与双引导?
我已经按照后一个链接在加密的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发布于 2019-01-03 23:05:05
您的格式对于输入/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时使用的名称!
https://askubuntu.com/questions/1106743
复制相似问题