91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux文件/目錄的權限及歸屬管理使用

發布時間:2020-10-16 11:43:10 來源:腳本之家 閱讀:170 作者:俊偉祺i 欄目:服務器

一、文件的權限和歸屬概述

1、訪問權限

讀取r:允許查看文件內容、顯示目錄列表;

寫入w:允許修改文件內容,允許在目錄中新建、移動、刪除文件或子目錄;

可執行x:允許運行程序、切換目錄

2、歸屬(所有權)

屬主:擁有該文件或目錄的用戶賬號;

屬組:擁有該文件或目錄的組賬號;

3、查看文件的權限和歸屬

Linux文件/目錄的權限及歸屬管理使用

4、chmod設置文件權限

chmod命令的基本語法格式如下:

Linux文件/目錄的權限及歸屬管理使用

應用舉例:

[root@centos01 ~]# touch 1.txt   <!--創建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 <!--添加755權限(rwxr-xr-x)-->
[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

5、chown設置文件的歸屬

chown命令的基本語法格式如下:

Linux文件/目錄的權限及歸屬管理使用

應用舉例:

[root@centos01 ~]# chown bob 1.txt <!--1.txt設置屬主-->
[root@centos01 ~]# ll
總用量 8
-rwxr-xr-x 1 bob 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
[root@centos01 ~]# chown :benet 1.txt <!--1.txt設置屬組-->
[root@centos01 ~]# ll
總用量 8
-rwxr-xr-x 1 bob benet  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
[root@centos01 ~]# chown bob:benet 1.txt <!--1.txt設置屬主和屬組-->
[root@centos01 ~]# ll
總用量 8
-rwxr-xr-x 1 bob benet  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
<!---->

二、目錄的權限和歸屬

1、訪問權限

Linux文件/目錄的權限及歸屬管理使用

2、歸屬(所有權)

屬主:擁有該目錄的用戶賬號;

屬組:擁有該目錄的組賬號;

3、chmod設置目錄權限

chmod命令設置目錄權限的基本格式如下:

Linux文件/目錄的權限及歸屬管理使用

應用舉例:

[root@centos01 ~]# chmod -R 755 benet/  
     <!--循環設置benet目錄下的文件或者目錄權限為755-->
[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
drwxr-xr-x 3 root root  18 1月 11 22:39 benet
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg

4、chown設置目錄的歸屬

chown命令設置目錄歸屬的基本格式如下:

Linux文件/目錄的權限及歸屬管理使用

應用舉例:

[root@centos01 ~]# chown -R bob:benet benet/  
  <!--循環設置benet目錄中所屬用戶為bob,所屬組為benet-->
[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
drwxr-xr-x 3 bob benet  18 1月 11 22:39 benet
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg

三、權限掩碼umask

1、umask的作用

控制新建的文件或目錄的權限,默認權限去除umask的權限就是新建的文件或者目錄的權限。

2、設置umask

umask 022

3、查看umask

umask

4、應用舉例:

[root@centos01 ~]# umask <!--查看umask-->
0022
[root@centos01 ~]# umask 000 <!--設置umask為000-->
[root@centos01 ~]# umask  <!--驗證是否設置成功-->
0000
[root@centos01 ~]# touch 2.txt  <!--創建新文件-->
[root@centos01 ~]# ll
總用量 8
-rwxr-xr-x 1 bob benet  0 1月 17 03:48 1.txt
-rw-rw-rw- 1 root root   0 1月 17 03:48 2.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 ~]# umask 022    <!--設置umask為022-->
[root@centos01 ~]# umask      <!--查看umask-->
0022
[root@centos01 ~]# touch 3.txt    <!--再次創建新文件-->
[root@centos01 ~]# ll
總用量 8
-rwxr-xr-x 1 bob benet  0 1月 17 03:48 1.txt
-rw-rw-rw- 1 root root   0 1月 17 03:48 2.txt
-rw-r--r-- 1 root root   0 1月 17 03:49 3.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

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东安县| 电白县| 福建省| 平山县| 乌恰县| 仁布县| 沽源县| 林甸县| 砚山县| 南充市| 织金县| 罗山县| 廊坊市| 和政县| 即墨市| 探索| 潞西市| 农安县| 屯昌县| 铁力市| 海丰县| 牟定县| 班戈县| 夏河县| 丹凤县| 镇原县| 精河县| 临夏县| 天等县| 武汉市| 九江市| 洞口县| 浙江省| 金平| 双柏县| 防城港市| 湘潭市| 根河市| 武宣县| 无锡市| 白河县|