文件夹保护

Folders protection

我需要通过其他人保护我家中集群 (ssh) 上的数据。 我想通过 chmod 来阻止其他人进入(读取和写入)该目录,这样我就只有进入、读取和写入文件的权限。 哪个是最好的 "chmod" 组合来做到这一点?我不能 执行 "sudo" 和其他管理说明,因为我是机器的简单用户。我已经以这种方式隐藏了文件夹:./myfolder 但对我来说还不够 因为通过 ls -a 它是可见的。

有人可以帮帮我吗?

提前致谢

乙。

我相信你需要这样的东西

chmod -R u+rw,go-rwX ~

或者

chmod -R 600 ~

这会给你读写权限,但拒绝其他用户。但是请注意,root 用户仍然可以访问所有内容。

访问this post on superuser. You will find all you need to know. Visit here and here to learn more about chmod and file security. But was there really a need to ask this question here?