溫馨提示×

溫馨提示×

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

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

CentOS系統(tǒng)管理的基本權限和歸屬是什么

發(fā)布時間:2021-09-24 14:27:05 來源:億速云 閱讀:151 作者:iii 欄目:系統(tǒng)運維

本篇內(nèi)容主要講解“CentOS系統(tǒng)管理的基本權限和歸屬是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“CentOS系統(tǒng)管理的基本權限和歸屬是什么”吧!

一基本權限和歸屬關系

二,文件和目錄的權限

三,權限的設置:chmod,umask,mkdir -m

四,文件和目錄的所有者和所屬組:chown,chgrp

擴展:

Linux系統(tǒng)管理_附加控制權限:

Linux系統(tǒng)管理_用戶和用戶組:

Linux系統(tǒng)管理_ACL訪問控制:

一 :基本權限和歸屬關系

1,訪問權限:

-讀?。涸试S查看內(nèi)容-read

-寫入:允許修改內(nèi)容-write

-可執(zhí)行:允許運行和切換-excute

注:可執(zhí)行權限對于目錄來說,對應的位置有x權限,意為是否可進入該目錄;

而對于文件來說,有x權限,意為該文件可執(zhí)行,如程序(命令)的所有者權限中都有x權限。

2,歸屬關系:

-屬主:擁有此文件或目錄的用戶-user

-屬組:擁有此文件或目錄的組-group

-其他用戶:除屬主、屬組以外的用戶-other

最終權限:訪問權限和歸屬關系共同決定最終權限

二:文件和目錄的權限

[root@localhost/]# ll -d /etc/passwd  /boot/

drwxr-xr-x4rootroot1024 2013-07-10 /boot/        //目錄

-rw-r--r--1rootroot 1681 02-17 10:23 /etc/passwd     //文件

1 2        3 4    5   6    7           8

第一段:d代表該目標為目錄,-代表該目標位文件

第二段:rwxr-xr-x :文件和目錄的權限位

注:一共九位,前三位為user(所有者)的權限,中間三位為group(所屬組)的權限,最后三位為other(其他用戶)的權限。

其中r用數(shù)字標示為4,w為2,x為1

第三段:對于文件來說,為硬鏈接數(shù);

對于目錄來說,為該目錄下有多少個目錄,其中包括隱藏目錄“.”和“..”。

第四段:為屬主,即文件或目錄的所有者

第五段:為所屬組

第六段:文件的大小,默認情況下單位為bit(字節(jié))

第七段:為最后修改的時間

第八段:文件或目錄的名稱

三:設置基本權限:chmod、umask和mkdir -m

1,chmod命令

-格式:chmod [ugoa] [+ - =][rwx] 文件/目錄

chmod [nnn] 文件/目錄(n代表權限的數(shù)字形式)

常用選項:-R :遞歸更改權限

        - -reference=:以指定文件或目錄做模板(這個不重要)

示例:

1,修改Desktop的相關屬性,分別使用字符權限和數(shù)字權限進行設置

[root@localhost ~]#ll -d Desktop/

drwxr-xr-x 3 rootroot 4096 02-16 03:40 Desktop/

[root@localhost ~]#chmod g+w,o-rx Desktop/

[root@localhost ~]#ll -d Desktop/

drwxrwx--- 3 rootroot 4096 02-16 03:40 Desktop/

[root@localhost ~]#chmod 755 Desktop/

[root@localhost ~]#ll -d Desktop/

drwxr-xr-x 3 rootroot 4096 02-16 03:40 Desktop/

2,創(chuàng)建一個可執(zhí)行文件,并賦予所有者x權限

[root@localhost ~]#echo "echo Hello World" > test.sh

[root@localhost ~]#ll -lh test.sh

-rw-r--r-- 1 rootroot 17 02-18 21:12 test.sh

[root@localhost ~]# chmod +x test.sh    //+x默認為所有者添加該權限

[root@localhost ~]#ll -lh test.sh

-rwxr-xr-x 1 rootroot 17 02-18 21:12 test.sh

[root@localhost ~]#./test.sh

Hello World

[root@localhost ~]#

2,umask命令:新建文件或目錄的默認權限

-一般文件默認不給x執(zhí)行權限

-其他取決于umask設置

-umask值可以進行設置(為臨時,umask 0027即講umask值設置為0027,可使用umask查看)

注1:由于文件默認不給x權限,所以創(chuàng)建一個新文件的最大權限為666,創(chuàng)建一個目錄的最大權限為777。

注2: umask默認值為022(- - -- w-- w -),也就是說:

新建一個文件時缺省權限為:

為rw - rw - rw - 和- - -- w --w - 的差,即為rw - r - - r - -;即為644(注:不能用777或666減去022)

新建一個目錄時缺省權限為:

為rwx rwx rwx 和- - -- w --w - 的差,即為rwx r - x r - x;即為755

示例:

[root@localhost ~]# umask

0022

[root@localhost ~]# mkdir mulu1

[root@localhost ~]# touch file1.txt

[root@localhost ~]# ll -d mulu1/ file1.txt

-rw-r--r--1 root root    0 02-18 21:22 file1.txt   //默認文件權限為644

drwxr-xr-x2 root root 4096 02-18 21:21 mulu1/  //默認目錄權限為755

[root@localhost ~]# umask 0027  //將umask值設置為0027

[root@localhost ~]# umask

0027        //修改之后umask值為0027

[root@localhost ~]# mkdir mulu2     //修改umask值后再次創(chuàng)建目錄

[root@localhost ~]# touch file2.txt //修改umask值后再次創(chuàng)建文件

[root@localhost ~]# ll -d mulu2/ file2.txt

-rw-r-----1 root root    0 02-18 21:28 file2.txt   

drwxr-x---2 root root 4096 02-18 21:28 mulu2/

[root@localhost ~]#

可以看到umask值設置為0027之后,那么創(chuàng)建的目錄和文件的權限方面other用戶將不再擁有任何權限。

3,mkdir -m

mkdir為創(chuàng)建一個目錄,-m參數(shù)可以直接指定即將創(chuàng)建目錄的權限

mkdir

四,文件和目錄的所有者和所屬組:chown,chgrp

1,chown:設置文件或目錄的歸屬關系

-格式:chown 屬主 文件或目錄    //修改文件或目錄的所有者

      chown :屬組 文件或目錄   //修改文件或目錄的所屬組

      chown 屬主:屬組 文件或目錄   //修改文件或目錄的所有者和所屬組

-R選項:遞歸修改權限

            - -reference選項:以指定目錄或文件作為模板(作為了解)

示例:

首先修改file1.txt的權限

然后以file1.txt為模板修改file2.txt文件的權限所有者和所屬用戶組。

[root@localhost ~]# touch file1.txt

[root@localhost ~]# touch file2.txt

[root@localhost ~]# ll file*

-rw-r--r-- 1 rootroot 0 02-18 21:43 file1.txt

-rw-r--r-- 1 rootroot 0 02-18 21:43 file2.txt

[root@localhost ~]# useradd user1

[root@localhost ~]# chown user1:user1 file1.txt //修改file1.txt所有者為user1

                                                           //所屬組為user1

[root@localhost ~]# ll file*

-rw-r--r-- 1 user1user1 0 02-18 21:43 file1.txt

-rw-r--r-- 1root  root  0 02-18 21:43 file2.txt

[root@localhost ~]# chown --reference file1.txt file2.txt   //file2.txt將會復制file1.txt的屬性

[root@localhost ~]# ll file*

-rw-r--r--1 user1 user1 0 02-18 21:43 file1.txt

-rw-r--r--1 user1 user1 0 02-18 21:43 file2.txt    //所有者和所屬組為和

           //file1.txt相同

2,chgrp:設置文件或目錄的所屬組

chgrp 屬組 文件或目錄 :修改文件或目錄為的所屬組

注:相當于chown :屬組文件或目錄

[root@localhost ~]# ll file*

-rw-r--r--1 user1 user1 0 02-18 21:43 file1.txt

-rw-r--r--1 user1 user1 0 02-18 21:43 file2.txt

[root@localhost ~]# chgrp root file1.txt file2.txt  //修改file1和file2的屬主

[root@localhost ~]# ll file*

-rw-r--r--1 user1 root 0 02-18 21:43 file1.txt     //屬主變?yōu)閞oot

-rw-r--r--1 user1 root 0 02-18 21:43 file2.txt     //屬主變?yōu)榱藃oot

[root@localhost ~]#

到此,相信大家對“CentOS系統(tǒng)管理的基本權限和歸屬是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

向AI問一下細節(jié)

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

AI