一、文件的權限和歸屬概述
站在用戶的角度思考問題,與客戶深入溝通,找到渠縣網站設計與渠縣網站推廣的解決方案,憑借多年的經驗,讓設計與互聯網技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網站設計、成都網站制作、企業(yè)官網、英文網站、手機端網站、網站推廣、域名注冊、虛擬空間、企業(yè)郵箱。業(yè)務覆蓋渠縣地區(qū)。1、訪問權限
讀取r:允許查看文件內容、顯示目錄列表;
寫入w:允許修改文件內容,允許在目錄中新建、移動、刪除文件或子目錄;
可執(zhí)行x:允許運行程序、切換目錄
2、歸屬(所有權)
屬主:擁有該文件或目錄的用戶賬號;
屬組:擁有該文件或目錄的組賬號;
3、查看文件的權限和歸屬
4、chmod設置文件權限
chmod命令的基本語法格式如下:
應用舉例:
[root@centos01 ~]# touch 1.txt [root@centos01 ~]# ll 總用量 8 -rw-r--r-- 1 root root 0 1月 11 22:27 1.txt -rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg -rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg [root@centos01 ~]# chmod u+x ./1.txt [root@centos01 ~]# ll 總用量 8 -rwxr--r-- 1 root root 0 1月 11 22:27 1.txt -rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg -rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg [root@centos01 ~]# chmod u-x,g+x,o+w 1.txt [root@centos01 ~]# ll 總用量 8 -rw-r-xrw- 1 root root 0 1月 11 22:27 1.txt -rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg -rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg [root@centos01 ~]# chmod 755 1.txt [root@centos01 ~]# ll 總用量 8 -rwxr-xr-x 1 root root 0 1月 17 02:36 1.txt -rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg -rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg