1

不要问为什么,但我做到了

rm .Private 

在我的主目录中。它删除了软链接 /home/user/.private 而不是 /home/.ecryptfs/user。

我做了

ln -s .Private /home/.ecryptfs/yoram/.Private/home/.ecryptfs/

但我明白了

我?????????? ? ? ? ? ? 。私人的

如何重新创建原始链接?

4

1 回答 1

0

由于一切仍然正常并且登录正常,看起来只是ls没有执行文件夹的权限并且显示烦人???的 's.

给文件夹 achmod +x应该修复它。

这是我做的一些测试,仅供参考:

$ mkdir test; touch test/1; touch test/2

$ ls -al test
total 0
drwxr-xr-x 2 user user  80 Dec 25 13:20 .
drwxrwxrwt 8 root root 300 Dec 25 13:20 ..
-rw-r--r-- 1 user user   0 Dec 25 13:20 1
-rw-r--r-- 1 user user   0 Dec 25 13:20 2

$ chmod -v -x test
mode of 'test' changed from 0755 (rwxr-xr-x) to 0644 (rw-r--r--)

$ ls -al test
ls: cannot access 'test/.': Permission denied
ls: cannot access 'test/..': Permission denied
ls: cannot access 'test/2': Permission denied
ls: cannot access 'test/1': Permission denied
total 0
d????????? ? ? ? ?            ? .
d????????? ? ? ? ?            ? ..
-????????? ? ? ? ?            ? 1
-????????? ? ? ? ?            ? 2

$ chmod -v +x test
mode of 'test' changed from 0644 (rw-r--r--) to 0755 (rwxr-xr-x)

$ ls -al test
total 0
drwxr-xr-x 2 user user  80 Dec 25 13:20 .
drwxrwxrwt 8 root root 300 Dec 25 13:20 ..
-rw-r--r-- 1 user user   0 Dec 25 13:20 1
-rw-r--r-- 1 user user   0 Dec 25 13:20 2

$ chmod -v -r test
mode of 'test' changed from 0755 (rwxr-xr-x) to 0311 (-wx--x--x)

$ ls -al test
ls: cannot open directory 'test': Permission denied
于 2017-12-25T20:31:52.057 回答