- u user
- g group
- o other
- --- --- ---
- u g o
- rwx r-x --x
- r read
- w write
- x execute
- [root@qfedu.com ~]# chmod 权限 ⽂件
- [root@qfedu.com ~]# chmod u-r-w a.txt
- [root@qfedu.com ~]# chmod u+r a.txt
- [root@qfedu.com ~]# chmod g+w a.txt
- [root@qfedu.com ~]# chmod o+x a.txt
- [root@qfedu.com ~]# chmod u+w,g-w,o+w a.txt
- [root@qfedu.com ~]# chmod a-r a.txt a表示ugo3个位置
- [root@qfedu.com ~]# chmod -r a.txt (建议少⽤)
- 4=r 2=w 1=x
- rwx 4+2+1=7
- r-- 4
- r-x 4+1=5
- 745
- [tom@qfedu.com ~]$ chmod 604 a.txt
- [tom@qfedu.com ~]$ ll a.txt
- -rw----r-- 1 tom tom 44 Nov 25 11:43 a.txt
- [root@qfedu.com ~]#chown ⽤户 ⽂件
- [root@qfedu.com ~]#chown user2 a.txt
- [root@qfedu.com ~]#chown {.|:}组 ⽂件
- [root@qfedu.com ~]#chown .grp2 a.txt
- [root@qfedu.com ~]#chown ⽤户.组 ⽂件
- [root@qfedu.com ~]#chown user3:grp3 a.txt
- -R recoursive 递归修改,修改⽬录的时候连带⽬录的所有⼦⽂件⼀起修改
- [root@qfedu.com ~]#ls -l ⽂件名
- -rwxrwxrwx. 1 root root 819 11⽉ 18 10:14 1考试.txt
⽐如: