1
我創建了一個目錄併爲用戶(稱爲'Brad')寫入權限。沒有對子文件夾的寫入權限
Brad可以在其父目錄內創建文件和目錄。
但是,他無法寫入子目錄。
也就是說,他訪問父目錄,在其內創建一個新目錄,但是這個新創建的目錄並不給他寫權限。
管理員必須進入子目錄重新分配他的權限。
所以問題是:爲什麼權限不被子目錄繼承?
我創建了一個目錄併爲用戶(稱爲'Brad')寫入權限。沒有對子文件夾的寫入權限
Brad可以在其父目錄內創建文件和目錄。
但是,他無法寫入子目錄。
也就是說,他訪問父目錄,在其內創建一個新目錄,但是這個新創建的目錄並不給他寫權限。
管理員必須進入子目錄重新分配他的權限。
所以問題是:爲什麼權限不被子目錄繼承?
-R,你需要給權限前面的所有子目錄......在linux下,這是由MS
嘗試寫-R,不知道做:http://support.microsoft.com/kb/313398 或:https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/acl_inherit_permissions.mspx?mfr=true
更新:這是一個例子(在使用終端的Linux上,假設您當前位於您所關心的特定目錄的父目錄中)...
sudo chown www-data:www-data dlfiles/ ... This will only modify the ownership of the parent directory
sudo chown -R www-data:www-data dlfiles/ ... This will modify all the sub directories too
sudo chmod -R 777 dlfiles/ ... This will modify the Read-Write-Execute permissions to Everyone can RWX.