區別
acl檔案許可權管理: 設定不同使用者,不同的基本許可權(r、w、x)。物件數量不同。
ugo設定基本許可權: 只能乙個使用者,乙個組和其他人
語法 : setfacl -m u:alice:rw /home/test.txt
命令 設定 使用者或組:使用者名稱:許可權 檔案物件
用法示例
準備檔案並檢視許可權
[root@localhost ~]
# touch /home/1.txt
[root@localhost ~]
# ll /home/1.txt
-rw-r--r--
. 1 root root 0 aug 13 19:58 /home/1.txt
[root@localhost ~]
#
設定使用者alice許可權
在這裡插入**片[root@localhost ~]
# getfacl /home/1.txt
getfacl: removing leading '/'
from absolute path names
# file: home/1.txt
# owner: root
# group: root
user::rw-
group::r--
other::r--
[root@localhost ~]
# setfacl -m u:alice:rw /home/1.txt
[root@localhost ~]
# getfacl /home/1.txt
getfacl: removing leading '/'
from absolute path names
# file: home/1.txt
# owner: root
# group: root
user::rw-
user:alice:rw-
group::r--
mask::rw-
other::r--
設定使用者jack許可權
[root@localhost ~]
# setfacl -m u:jack:- /home/1.txt
[root@localhost ~]
# getfacl /home/1.txt
getfacl: removing leading '/'
from absolute path names
# file: home/1.txt
# owner: root
# group: root
user::rw-
user:jack:--
-user:alice:rw-
group::r--
mask::rw-
other::r--
刪除acl
刪除部分
[root@qianfeng ~]
# setfacl -x g:hr /home/test.txt
刪除所有
[root@qianfeng ~]
# setfacl -b /home/test.txt
linux基本許可權ACL
ugo甚至基本許可權 只能乙個使用者,乙個組和其他人 acl設定基本許可權 r,w,x acl基本用法 設定 root w hat touch home test.txt root w hat ll home test.txt root w hat getfacl home test.txt roo...
許可權管理 ACL許可權
acl許可權簡介 當要給乙個使用者與檔案屬主 屬組 其他人許可權都不相同的時候使用,也就是說,這個使用者對於這個檔案不屬於三種身份的任何一種,是屬於第四種身份,那麼我們就需要使用acl許可權去給他賦予單獨的許可權。檢視分割槽acl許可權是否開啟 dumpe2fs h dev sda3 dumpe2f...
許可權管理acl
檔案的訪問控制 acl列表 1 acl定義 acl access control 指定特殊使用者對特殊檔案有特殊許可權 drwxrwx 2root root 17jul 1801 39 westos 表示 westos目錄時有許可權列表 getfacl westos file westos 檔名稱 ...