博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
12 Linux ACL权限
阅读量:5208 次
发布时间:2019-06-14

本文共 715 字,大约阅读时间需要 2 分钟。

1、查看facl权限

getfacl /home/test.txt

[root@localhost ~]# getfacl /home/test.txtgetfacl: Removing leading '/' from absolute path names# file: home/test.txt# owner: root# group: rootuser::rw-group::r--other::r--

  

2、设置facl权限

setfacl -m u:latiny:rw /home/test.txt

setfacl -m u:hulk:rwx /home/test.txt

[root@localhost ~]# setfacl -m user:hulk:rwx /home/test.txt [root@localhost ~]# getfacl /home/test.txt getfacl: Removing leading '/' from absolute path names# file: home/test.txt# owner: root# group: rootuser::rw-user:latiny:rw-user:hulk:rwxgroup::r--mask::rwxother::r--

 

3、撤销facl权限

setfacl -x u:hulk /home/test.txt

 

4、复制facl权限

getfacl file2 | setfacl --set-file=- file2

 

 

 

转载于:https://www.cnblogs.com/Latiny/p/10833503.html

你可能感兴趣的文章
大数据学习之一——了解简单概念
查看>>
P1-13:集成日志组件 logback 2彩色日志
查看>>
昨天开始接任务
查看>>
Linux升级内核教程(CentOS7)
查看>>
JDK5.0 特性 监控与管理虚拟机
查看>>
Lintcode: Partition Array
查看>>
分享适合个人站长的5类型网站
查看>>
类别的三个作用
查看>>
【SICP练习】85 练习2.57
查看>>
runC爆严重安全漏洞,主机可被攻击!使用容器的快打补丁
查看>>
Maximum Product Subarray
查看>>
shell 默认变量
查看>>
solr相关配置翻译
查看>>
通过beego快速创建一个Restful风格API项目及API文档自动化(转)
查看>>
解决DataSnap支持的Tcp长连接数受限的两种方法
查看>>
Synchronous/Asynchronous:任务的同步异步,以及asynchronous callback异步回调
查看>>
ASP.NET MVC5 高级编程-学习日记-第二章 控制器
查看>>
如何选择适合自己的云管理平台(一)
查看>>
Hibernate中inverse="true"的理解
查看>>
不同版本(2.3,2.4,2.5,3.0)的Servlet web.xml 头信息
查看>>