Skip to main content
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。

chmod

貢獻者

XCP NFS chmod 命令會掃描及變更指定目錄結構中所有檔案的檔案權限。「 chmod 」命令需要模式或參照、 NFS 共用或 POSIX 路徑做為變數。XCP chmod 命令會遞迴變更指定路徑的權限。命令輸出會顯示掃描的檔案總數、以及在輸出中變更的權限。

語法
xcp chmod -mode <value> <source NFS export path>
顯示範例
[root@user-1 linux]# ./xcp chmod -mode <IP address>:/source_vol

Xcp command : xcp chmod -mode <IP address>://source_vol
Stats : 6 scanned, 4 changed mode
Speed : 1.96 KiB in (2.13 KiB/s), 812 out (882/s)
Total Time : 0s.
STATUS : PASSED
[root@user-1 linux] #

下表列出 chmod 參數及其說明。

參數 說明

<<nfs_chmod_exclude,chmod -exclude ;篩選器 >

排除符合篩選條件的檔案和目錄。

<<nfs_chmod_match,chmod -match ;篩選器 >

僅處理與篩選器相符的檔案和目錄。

<<nfs_chmod_reference,chmod -reference ;參考 gt;

指定參考的檔案或目錄點。

chmod -v

報告每個已處理物件的輸出。

chmod -exclude <filter>

使用 -exclude <filter> 參數 chmod 命令來排除符合篩選條件的檔案和目錄。

語法
xcp chmod -exclude <filter> -mode <value> <source NFS export path>
顯示範例
[root@user-1 linux]# ./xcp chmod -exclude "fnm('3.img')" -mode 770 101.11.10.10:/s_v1/D3/

Excluded: 1 excluded, 0 did not match exclude criteria
Xcp command : xcp chmod -exclude fnm('3.img') -mode 770 101.11.10.10:/s_v1/D3/
Stats : 5 scanned, 1 excluded, 5 changed mode
Speed : 2.10 KiB in (7.55 KiB/s), 976 out (3.43 KiB/s)
Total Time : 0s.
STATUS : PASSED
[root@user-1 linux]#

chmod -Match <filter>

使用 -match <filter> 參數 chmod 僅處理與篩選器相符的檔案和目錄的命令。

語法
xcp chmod -match <filter>  -mode <value> <source NFS export path>
顯示範例
[root@user-1 linux]# ./xcp chmod -match "fnm('2.img')" -mode 777 101.11.10.10:/s_v1/D2/

Filtered: 1 matched, 5 did not match
Xcp command : xcp chmod -match fnm('2.img') -mode 101.11.10.10:/s_v1/D2/
Stats : 6 scanned, 1 matched, 2 changed mode
Speed : 1.67 KiB in (1.99 KiB/s), 484 out (578/s)
Total Time : 0s.
STATUS : PASSED
[root@user-1 linux]

chmod -reference <reference>

使用 -reference <reference> 參數 chmod 指定參考檔案或目錄點的命令。

語法
xcp chmod -reference <reference> <source NFS export path>
顯示範例
[root@user-1 linux]# ./xcp chmod -reference 101.11.10.10:/s_v1/D1/1.txt 102.21.10.10:/s_v1/D2/

Xcp command : xcp chmod -reference 101.11.10.10:/s_v1/D1/1.txt 102.21.10.10:/s_v1/D2/
Stats : 6 scanned, 6 changed mode
Speed : 3.11 KiB in (3.15 KiB/s), 1.98 KiB out (2.00 KiB/s)
Total Time : 0s.
STATUS : PASSED
[root@user-1 linux]#

chmod -v

使用 -v 參數 chmod 用於報告每個已處理物件輸出的命令。

語法
chmod -mode <value> -v <source NFS export path>
顯示範例
[root@user-1 linux]# ./xcp chmod -mode 111 -v file:///mnt/s_v1/D1/

mode of 'file:///mnt/s_v1/D1' changed from 0777 to 0111
mode of 'file:///mnt/s_v1/D1/1.txt' changed from 0777 to 0111
mode of 'file:///mnt/s_v1/D1/softlink_1.img' changed from 0777 to 0111
mode of 'file:///mnt/s_v1/D1/softlink_to_hardlink_1.img' changed from 0777 to 0111 mode
of 'file:///mnt/s_v1/D1/1.img' changed from 0777 to 0111
mode of 'file:///mnt/s_v1/D1/hardlink_1.img' changed from 0777 to 0111 mode of
'file:///mnt/s_v1/D1/1.img1' changed from 0777 to 0111
Xcp command : xcp chmod -mode 111 -v file:///mnt/s_v1/D1/ Stats : 7 scanned, 7
changed mode
Speed : 0 in (0/s), 0 out (0/s)
Total Time : 0s.
STATUS : PASSED
[root@user-1 linux]#