Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的服务器上有一个文件以某种方式生成,权限级别为 600,我无法更改权限或下载文件。当我尝试更改权限以及尝试下载时,我的权限被拒绝。
我可以以某种方式强制更改权限吗?我需要帮助!
提前致谢!
权限 600 表示文件的所有者有权对其进行读写。如果您无法阅读该文件,则您不是该文件的所有者。你需要:
sudo chown your_username filename
不过,请确保该文件实际上应该归您所有。如果你这样做,你可能会阻碍实际生成它的东西读取和写入它的能力。如果文件不敏感,您可以通过以下方式使其世界可读:
chmod a+r filename
(如果你没有 chown 它添加 sudo。)
这将导致权限为:644,允许任何人读取文件。