chgrp命令詳解

  

基礎命令學習目錄首頁css

 

原文連接:https://www.cnblogs.com/peida/archive/2012/12/03/2799003.htmlhtml

在lunix系統裏,文件或目錄的權限的掌控以擁有者及所訴羣組來管理。能夠使用chgrp指令取變動文件與目錄所屬羣組,這種方式採用羣組名稱或羣組識別碼均可以。Chgrp命令就是change group的縮寫!要被改變的組名必需要在/etc/group文件內存在才行。linux

1.命令格式:post

chgrp [選項] [組] [文件]學習

2.命令功能:url

chgrp命令可採用羣組名稱或羣組識別碼的方式改變文件或目錄的所屬羣組。使用權限是超級用戶。 unix

3.命令參數:調試

必要參數:htm

-c 當發生改變時輸出調試信息blog

-f 不顯示錯誤信息

-R 處理指定目錄以及其子目錄下的全部文件

-v 運行時顯示詳細的處理信息

--dereference 做用於符號連接的指向,而不是符號連接自己

--no-dereference 做用於符號連接自己

 

選擇參數:

--reference=<文件或者目錄>

--help 顯示幫助信息

--version 顯示版本信息

 

4.使用實例:

實例1:改變文件的羣組屬性 

命令:

chgrp -v bin log2012.log

輸出:

[root@localhost test]# ll

---xrw-r-- 1 root root 302108 11-13 06:03 log2012.log

[root@localhost test]# chgrp -v bin log2012.log

「log2012.log」 的所屬組已更改成 bin

[root@localhost test]# ll

---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log

說明:

將log2012.log文件由root羣組改成bin羣組

 

實例2:根據指定文件改變文件的羣組屬性 

命令:

chgrp --reference=log2012.log log2013.log

輸出:

[root@localhost test]# ll

---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log

-rw-r--r-- 1 root root     61 11-13 06:03 log2013.log

[root@localhost test]#  chgrp --reference=log2012.log log2013.log 

[root@localhost test]# ll

---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log

-rw-r--r-- 1 root bin      61 11-13 06:03 log2013.log

說明:

改變文件log2013.log 的羣組屬性,使得文件log2013.log的羣組屬性和參考文件log2012.log的羣組屬性相同

 

實例3:改變指定目錄以及其子目錄下的全部文件的羣組屬性 

命令:

輸出:

[root@localhost test]# ll

drwxr-xr-x 2 root root   4096 11-30 08:39 test6

[root@localhost test]# cd test6

[root@localhost test6]# ll

---xr--r-- 1 root root 302108 11-30 08:39 linklog.log

---xr--r-- 1 root root 302108 11-30 08:39 log2012.log

-rw-r--r-- 1 root root     61 11-30 08:39 log2013.log

-rw-r--r-- 1 root root      0 11-30 08:39 log2014.log

-rw-r--r-- 1 root root      0 11-30 08:39 log2015.log

-rw-r--r-- 1 root root      0 11-30 08:39 log2016.log

-rw-r--r-- 1 root root      0 11-30 08:39 log2017.log

[root@localhost test6]# cd ..

[root@localhost test]# chgrp -R bin test6

[root@localhost test]# cd test6

[root@localhost test6]# ll

---xr--r-- 1 root bin 302108 11-30 08:39 linklog.log

---xr--r-- 1 root bin 302108 11-30 08:39 log2012.log

-rw-r--r-- 1 root bin     61 11-30 08:39 log2013.log

-rw-r--r-- 1 root bin      0 11-30 08:39 log2014.log

-rw-r--r-- 1 root bin      0 11-30 08:39 log2015.log

-rw-r--r-- 1 root bin      0 11-30 08:39 log2016.log

-rw-r--r-- 1 root bin      0 11-30 08:39 log2017.log

[root@localhost test6]# cd ..

[root@localhost test]# ll

drwxr-xr-x 2 root bin    4096 11-30 08:39 test6

[root@localhost test]#

說明:

改變指定目錄以及其子目錄下的全部文件的羣組屬性

 

實例4:經過羣組識別碼改變文件羣組屬性

命令:

chgrp -R 100 test6

輸出:

[root@localhost test]# chgrp -R 100 test6

[root@localhost test]# ll

drwxr-xr-x 2 root users   4096 11-30 08:39 test6

[root@localhost test]# cd test6

[root@localhost test6]# ll

---xr--r-- 1 root users 302108 11-30 08:39 linklog.log

---xr--r-- 1 root users 302108 11-30 08:39 log2012.log

-rw-r--r-- 1 root users     61 11-30 08:39 log2013.log

-rw-r--r-- 1 root users      0 11-30 08:39 log2014.log

-rw-r--r-- 1 root users      0 11-30 08:39 log2015.log

-rw-r--r-- 1 root users      0 11-30 08:39 log2016.log

-rw-r--r-- 1 root users      0 11-30 08:39 log2017.log

[root@localhost test6]#

說明:

經過羣組識別碼改變文件羣組屬性,100爲users羣組的識別碼,具體羣組和羣組識別碼能夠去/etc/group文件中查看

 

範例
$ ls -l linuxeye.css
-rwxr-xr-x 1 www www 13288 Mar 13 17:31 linuxeye.css $ chgrp root linuxeye.css $ ls -l linuxeye.css -rwxr-xr-x 1 www root 13288 Mar 13 17:31 linuxeye.css 上述命令將文件"linuxeye.css"所屬的組從"www"改爲了"root"。(執行命令者必須屬於"www"組或者超級管理員。)

相關文章
相關標籤/搜索