在 Linux Mint 中恢复加密的 /home 文件夹

在 Linux Mint 中恢复加密的 /home 文件夹

我正在尝试从旧安装的 linux mint 中恢复我的个人文件夹(/home/userfloflo),该旧安装不再启动。我正在尝试使用 linux mint live usb 检索此文件夹。

当我在 /home/userflofl 中导航时,我有两个文件:

  1. 访问您的私人数据.desktop
  2. 自述文件.txt

自述文件.TXT

为了保护您的数据,该目录已被卸载。

在图形桌面上,单击:“访问您的私人数据”

或者

从命令行运行:ecryptfs-mount-private

问题是

ecryptfs-mount-private

回报

ERROR: Encrypted private directory is not setup properly

ecryptfs-recover-private

回报

INFO: Searching for encrypted private directories (this might take a while)...
find: ‘/run/user/999/gvfs’: Permission denied

更新

ls -lA

回报

 total 4
lrwxrwxrwx 1 1000 1000   56 May 13 19:58 Access-Your-Private-Data.desktop -> /usr/share/ecryptfs-utils/ecryptfs-mount-private.desktop
drwx------ 3 1000 1000 4096 May 13 19:59 .cache
lrwxrwxrwx 1 1000 1000   33 May 13 19:58 .ecryptfs -> /home/.ecryptfs/florian/.ecryptfs
lrwxrwxrwx 1 1000 1000   32 May 13 19:58 .Private -> /home/.ecryptfs/florian/.Private
lrwxrwxrwx 1 1000 1000   52 May 13 19:58 README.txt -> /usr/share/ecryptfs-utils/ecryptfs-mount-private.txt

答案1

从这两个目录条目可以看到:

lrwxrwxrwx 1 1000 1000   33 May 13 19:58 .ecryptfs -> /home/.ecryptfs/florian/.ecryptfs
lrwxrwxrwx 1 1000 1000   32 May 13 19:58 .Private -> /home/.ecryptfs/florian/.Private

您尝试访问的加密目录嵌入在 的加密目录中/home,该目录涵盖所有用户。

首先,您需要将该目录解密。完成此操作后,您应该能够访问加密目录userfloflo并且可以解密该目录。

不幸的是,嵌套加密并没有真正增加任何额外的安全性,但它确实增加了相当大的复杂性。

相关内容