标签:images 无权限 详细信息 数字 执行 change roc bd09 一段
chmod = change mode 改变权限权限可用数字表示
r=4 w=2 x=1
rwx=7
rw=6
x=1
-=0
rw-r--r--=644
rw-r-xr-x=655
chmod修改某文件权限
chmod + 权限 +文件(只生效文件或目录本身)
chomd 700 2.txt
chmod -R + 权限 +文件(修改目录及目录下的目录与子文件,批量更改)
chmod u=rwx,g=r,o=r 1.txt
u:所属这,g所属组,o,其他用户
chmod a+x 1.txt 备注:所有的权限,加上执行权限。
chmod a-x 1.txt 备注:所有的权限,减去执行权限。
chmod g+x 1.txt 备注:所属组的权限,加上执行权限。
其他同理可得!!!
标签:images 无权限 详细信息 数字 执行 change roc bd09 一段
原文地址:http://blog.51cto.com/13451715/2175473