权限管理命令1、chmod[change the permissions mode of a file] : /bin/chmod 语法: chmod [{ugo}{+-=}{rwx}] [文件或目录名] // 直观 e.g. chmod u+wx filename chmod o-x filename chmod g=rwx filename 或者: chmod [mode=421] [文...
分类:
系统相关 时间:
2014-09-16 19:03:11
阅读次数:
236
chmod [ugoa] [+-= ] [rwx]
文件或者是目录u:表示文件的属主,g:表文件的属组内的成员,o:则表示其它用户,a:是所有用户的(ugo的总和)+—=:是对权限的操作,+表示增加相应的权限,-表示减少相应的权限,=则是设置成相应的权限777代表着用户、用户组及其他用户都有读、写、...
分类:
其他好文 时间:
2014-05-18 20:33:21
阅读次数:
338