发布网友 发布时间:2022-04-23 08:33
共2个回答
热心网友 时间:2022-06-09 10:10
文件权限修改用chmod命令,以添加可执行权限为例,chmod的格式大致如下:
chmod a+x 文件名
x表示可执行权限,这里的x如果改成r就表示修改的是读权限,如果改成w就表示修改的是文件的写权限;
而那个a表示all,就是用户(user)、用户组(group)、其他用户(others)三种身份的权限都修改。如果只修改用户的权限(user)、用户组(group)、其他用户(others)三种身份中的一个,可以分别用u、g、o三个字母来代替那个a。
x前面的加号如果改成英文减号则表示去掉某个权限,也可以不用加号和减号,直接用等于号表示设置r、w、x的组合。示例:
chmod a-x testfile
chmod u+w testfile
chmod g+w testfile
chmod u-w testfile
chmod u=rwx,g=rw,o=r testfile
热心网友 时间:2022-06-09 10:10
chmod 权限 文件名