2016年9月7日 星期三

Linux目錄與檔案-權限管理

指令
#chmod [權限] [檔案or目錄]
-R 遞迴

權限-檔案
r:讀取檔案內容。
w:編輯檔案內容。
x:可以被執行。

權限-目錄
r:讀取目錄清單。
w:新增、刪除、搬移指定目錄內的目錄與檔案。
x:可以被執行。

延伸-修改指定路徑下所有檔案or目錄
#chmod 755 $(find [路徑] -type f)
#chmod 755 $(find [路徑] -type d)

沒有留言:

張貼留言

Ubuntu 使用apt-get -y update更新出現大量Failed to fetch 404 Not Found訊息

Ubuntu 使用apt-get -y update更新出現大量Failed to fetch 404 Not Found訊息,確認DNS可以解析網址也可連到網路,基本可排除網路問題。 原因判斷:Ubuntu版本過舊,其更新包路徑已不在原本sources.list檔案內的更新路徑...