quan_vu wrote:
Vậy nếu ta thêm vào group đó một user khác thì nó có thể thực hiện quyền của group không
Có chứ sao ko?
Code:
$ ls -l
total 4
-rw-r--r-- 1 uzrun uzrun 7 2010-08-02 19:26 pl.txt
$ cat pl.txt
phanle
$ chmod 077 pl.txt
$ ls -l
total 4
----rwxrwx 1 uzrun uzrun 7 2010-08-02 19:26 pl.txt
$ cat pl.txt
cat: pl.txt: Permission denied
$ su test
Password:
Added user test.
$ ls -l
total 4
----rwxrwx 1 uzrun uzrun 7 2010-08-02 19:26 pl.txt
$ cat pl.txt
phanle
Ở đoạn code trên mình bỏ qua bước tạo và add thêm user test vào group uzrun (sau khi đã chmod 077) vì bước này mình làm bằng GUI chứ ko dùng command line .