在 Ubuntu 20.04 上,如何挂载 LUKS2 分区?

在 Ubuntu 20.04 上,如何挂载 LUKS2 分区?

使用以下命令格式化一个空的 ext4 分区

cryptsetup --type luks2 luksFormat /dev/sda1

我可以用它打开

cryptsetup open --type luks /dev/sda1 MyLabel

它可见为/dev/mapper/MyLabel

然而,当我尝试用

mount -t ext4 /dev/mapper/MyLabel /mnt/MyLabel

我收到此错误信息:

mount: /mnt/MyLabel: wrong fs type, bad option, bad superblock on /dev/mapper/MyLabel, missing codepage or helper program, or other error.

怎么了?

相关内容