安排在目錄中建立的檔案屬於該目錄的群組

安排在目錄中建立的檔案屬於該目錄的群組

如何設定權限,以便無論誰在 /directory 中建立任何檔案或目錄,群組擁有者都應自動成為 /directory 的相同群組擁有者?這是在 RHEL 上。

答案1

SGID 是可能的。

因此可以在這裡閱讀更多相關內容:http://linoxy.com/how-tos/stickbit-suid-guid/

有關如何實際執行此操作的範例:

SGID在目錄上的實作:

# chmod g+s /test/
# ls -ld /test
drwxrwsrwx 2 root root 4096 Mar  8 03:12 /test

Now swich to other user and create a file in /test directory.

# su - roger
$ cd /test/
$ touch roger.txt
$ ls -l roger.txt
-rw-rw-r-- 1 roger   root 0 Mar  8 03:13 roger.txt

相關內容