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.
我有一个 Ubuntu 服务器,我有一个目录/testftp/。在此目录中,我有许多其他目录和文件,如何设置此目录中所有现有和新目录和文件的权限- 755?
/testftp/
755
/testftp/组是testclient
testclient
谢谢!
upd 使用 chmod -R 755 /testftp/一切正常,但是当我创建/上传新文件或目录时,它具有600权限
chmod -R 755 /testftp/
600
检查以下手册页
man chmod man umask
尝试chmod -R 755 /testscript/
chmod -R 755 /testscript/
-R表示递归,它适用于所有子目录。
-R