46 linux檔案許可權

2022-10-08 18:48:08 字數 641 閱讀 4160

1.修改目錄許可權755,檔案許可權644

# 修改所有者:

chown -r root.root path (遞迴修改指定路徑的所有檔案為root使用者組所有)

# 修改目錄許可權:

find path -type d -exec chmod 755 {} ;

# 修改檔案許可權:

find path -type f -exec chmod 644 {} ;

# 搜尋檔案,並修改檔案許可權

find -type f |xargs chmod 644

查詢檔案許可權為777的檔案

find -type f -perm 0777 -print

3.查詢唯讀檔案

find / -perm /u=r

find / -perm /a=x

4.找到具有777許可權的檔案和chmod到755

find -type f -perm 0777 -print -exec chmod 644 {} \;
相關鏈結

Linux檔案許可權

linux使用者分為 擁有者 組群 group 其他 other linux系統中,預設的情況下,系統中所有的帳號與一般身份使用者,以及root的相關資訊,都是記錄在 etc passwd檔案中。每個人的密碼則是記錄在 etc shadow檔案下。此外,所有的組群名稱記錄在 etc group內!圖...

Linux檔案許可權

linux使用者分為 擁有者 組群 group 其他使用者 other linux系統中,預設的情況下,系統中所有的帳號與一般身份使用者,以及root的相關資訊,都是記錄在 etc passwd檔案中。每個人的密碼則是記錄在 etc shadow檔案下。此外,所有的組群名稱記錄在 etc group...

linux檔案許可權

檔案的許可權由三個部分組成 u user g group o other 每個部分的許可權又分別 r 4讀 w 寫2 x 執行1 下面以 var www資料夾設定許可權,了解如何設定檔案許可權 chmod a x var www 所有人都可進入 chmod a x var www 所有人都不可進入 ...