使用ecryptfs装载多个目录



我正在使用ecryptyfs在我的电脑中存储一些敏感数据(Debian喘息)。数据在一个分区中,该分区在启动时使用/etc/fstab自动安装。我已使用正确的参数设置了/root/.ecryptfsrc。我的.ecryptfsrc的内容如下:

key=passphrase:passphrase_passwd_file=/mnt/usb/password.txt
ecryptfs_sig=deadbeefdeadbeef
ecryptfs_cipher=aes
ecryptfs_key_bytes=16
ecryptfs_passthrough=n
ecryptfs_enable_filename_crypto=n

系统重新启动后,此分区正在正确装入。到目前为止还好。

我还需要将这些敏感数据传输到USB驱动器中的远程位置。所以我想用ext2fs格式化一个usb驱动器,并用ecryptfs安装它。我也不想重复使用密码,并希望在安装ecryptfs时为每个USB驱动器提供一次性密码。

ext2分区的格式化和安装工作如预期。我使用ecryptfs安装新的usb设备时使用的命令如下。密码(临时)存储在/root/usbpasswd.txt:中

mount  -t ecryptfs  
-o "rw,key=passphrase:passphrase_passwd_file=/root/usbpasswd.txt,
ecryptfs_unlink_sigs,ecryptfs_cipher=aes,ecryptfs_key_bytes=16,
ecryptfs_passthrough=n,ecryptfs_enable_filename_crypto=y" 
/mnt/usb2/ /mnt/usb2/

我没有使用文件中的密码安装新格式化的/mnt/usb2,而是提示输入Passphrase File,如下所示:

Passphrase File: /root/usbpasswd.txt
Passphrase File: /mnt/usb/password.txt
Passphrase File: /root/usbpasswd.txt
Passphrase File: ^C

这里可能出了什么问题?

感谢和问候,

我也遇到过同样的问题。

虽然在手册中写的是使用

-o key=passphrase:passphrase_passwd_file=/root/usbpasswd.txt

工作命令有一个不同的选项:

-o passphrase_passwd_file=/root/usbpasswd.txt

希望能有所帮助。干杯

相关内容

  • 没有找到相关文章

最新更新