1、 如果用戶(hù)已經(jīng)擁有了默認(rèn)的用戶(hù)組(通常組名與用戶(hù)名相同),就可以簡(jiǎn)單的通過(guò)變更文件夾的所屬用戶(hù)組來(lái)完成。
# chgrp tecmint /shares/project1/reports
另外,我們也可以通過(guò)以下方法為多個(gè)用戶(hù)(需要賦予指定目錄讀寫(xiě)權(quán)限的)新建一個(gè)用戶(hù)組。如此一來(lái),也就創(chuàng)建了一個(gè)共享目錄。
# groupadd projects
2、 接下來(lái)將用戶(hù) tecmint 添加到 projects 組中:
# usermod -aG projects tecmint # add user to projects
# groups tecmint # check users groups
3、 將目錄的所屬用戶(hù)組變更為 projects:
# chgrp projects /shares/project1/reports
4、 現(xiàn)在,給組成員設(shè)置讀寫(xiě)權(quán)限。
# chmod -R 0760 /shares/projects/reports
# ls -l /shares/projects/ #check new permissions
好了!這篇教程中,我們向您展示了如何在 Linux 中將指定目錄的讀寫(xiě)權(quán)限賦予用戶(hù)。
# chgrp tecmint /shares/project1/reports
另外,我們也可以通過(guò)以下方法為多個(gè)用戶(hù)(需要賦予指定目錄讀寫(xiě)權(quán)限的)新建一個(gè)用戶(hù)組。如此一來(lái),也就創(chuàng)建了一個(gè)共享目錄。
# groupadd projects
2、 接下來(lái)將用戶(hù) tecmint 添加到 projects 組中:
# usermod -aG projects tecmint # add user to projects
# groups tecmint # check users groups
3、 將目錄的所屬用戶(hù)組變更為 projects:
# chgrp projects /shares/project1/reports
4、 現(xiàn)在,給組成員設(shè)置讀寫(xiě)權(quán)限。
# chmod -R 0760 /shares/projects/reports
# ls -l /shares/projects/ #check new permissions
好了!這篇教程中,我們向您展示了如何在 Linux 中將指定目錄的讀寫(xiě)權(quán)限賦予用戶(hù)。