linux从零开始-linux常用命令3

权限管理


权限r read 4 w write 2 x excute 1

权限作用的范围

u user

g grounp

o other


+增加权限

-删除权限

=赋值权限


chmod命令

chmod u+x u-w o=rwx

chmod 0755



chown nobody a.txt

chgrp adm a.txt


默认目录权限 umask -S

u=rwx,g=rx,o=rx   777-022=0755

默认创建文件权限-rw-r--r-- 0644


你可能感兴趣的:(Linux权限管理)