-4

如何为用户添加读、写、执行权限;该组可以阅读;和其他用户不能做任何事情?

4

3 回答 3

3

(我建议最好在 Unix 或 SuperUser StackExchange 站点上问这个问题)

Chmod 是你的朋友。

引用http://www.dartmouth.edu/~rc/help/faq/permissions.html

chmod g+w myfile

给“myfile”组写权限,不理会所有其他权限标志

chmod g-rw myfile

删除对“myfile”的读写访问权限,保留所有其他权限标志

chmod g+rwxs mydir

授予对目录“mydir”的完整组读/写访问权限,同时设置 set-groupID 标志,以便在其中创建的目录继承该组

chmod u=rw,go= privatefile

显式授予用户读/写访问权限,并撤销所有组和其他访问权限,以文件“privatefile”

chmod -R g+rw .

授予组对该目录及其内部所有内容的读写访问权限(-R = 递归)

chgrp -R medi .

将此目录的所有权更改为组“medi”及其内部的所有内容(-R = 递归)。发出此命令的人必须拥有所有文件,否则将失败。

于 2013-03-08T00:55:09.030 回答
1

命令行 ;

chmod 740 文件名

于 2013-03-08T00:53:32.553 回答
0

如果你想用符号表示法试试这个:

chmod u=rwx,g=r,o= 文件

于 2013-03-08T01:07:05.117 回答