使文件仅对root可读

时间:2019-05-09 22:48:16

标签: macos ubuntu permissions readonly

如何使文件仅对Ubuntu根目录具有可读性?

1 个答案:

答案 0 :(得分:0)

启动外壳程序(命令提示符)

chmod 400 theNameOfTheFile
chown root:root theNameOfTheFile

请注意,只有超级用户(即root)才能访问该文件。

命令的意思是:

  • chmod-更改权限,以便只有所有者才能读取文件。
  • chown-将文件的所有权更改为root。