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.
我正在使用 Fedora 和一个文件夹,我想将权限设置为公开,每个读写
chmod -R 755 /directory chmod owner group world FileName
和其他的但不能工作
我如何将我的文件夹中的每一个及其下的每一件事都授予其他用户的公共权限
谢谢
以下两个命令将确保您的目的
chmod -R 755 /directory chown -R owner.group /directory
这将为每个人提供读取权限。由于所有权错误,您可能会遇到问题。如果文件不是很敏感,还可以使用:
chown -R nobody.nobody /directory ( No body means anyone )
使用命令 chmod -R 777 yourdirectory