标签:style blog color strong 文件 os
用户权限:
drwxr-xr-x 4 root root 1024 06-22 17:36 boot #权限位 硬连接数 所属用户 所属组 大小 最后修改时间 文件/目录#
r w x
4 2 1
用户权限位分为3段,分别对应USER GROUP OTHER
rwxr-xr-x 755 默认的目录权限
rw-r--r-- 644 默认的文件权限(都是不给执行权限的)
umask 查看默认创建目录时候的去掉的权限,看后面3位
[root@localhost zhangsan]# umask 0022
chmod 【ugo+-rwx】 dir
[root@localhost zhangsan]# chmod u=rwx,g=rwx,o=rx testdir/
标签:style blog color strong 文件 os
原文地址:http://www.cnblogs.com/yimiao/p/3814982.html