我希望cryptsetup
提示我输入密码,但它只是在尝试打开密钥文件但未能成功:
sudo cryptsetup luksFormat test.img cryptsetup-test
WARNING!
========
This will overwrite data on test.img irrevocably.
Are you sure? (Type uppercase yes): YES
Failed to open key file.
我希望cryptsetup
提示我输入密码,但它只是在尝试打开密钥文件但未能成功:
sudo cryptsetup luksFormat test.img cryptsetup-test
WARNING!
========
This will overwrite data on test.img irrevocably.
Are you sure? (Type uppercase yes): YES
Failed to open key file.
您混淆了
luksFormat
and的语法luksOpen
。luksFormat
不打开设备,因此不采用设备名称来映射到。因此,如果您尝试传递一个,它会将其解释为密钥文件的文件名并尝试(并且可能会失败)打开它。这是一个例子
luksFormat
:还有一个例子
luksOpen
: