博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux特殊的文件控制权限FACL
阅读量:6609 次
发布时间:2019-06-24

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

  对文件设置特殊的权限,FACL(File Access Control List)


 

ACL简介

基本ACL操作

getfacl  查看文件权限      setfacl  设定acl权限

设置file的ACL权限

[root@mvpbang tmp]# setfacl -m u:ftp:rwx 1.sh [root@mvpbang tmp]# [root@mvpbang tmp]# ll 1.sh -rw-rwxr--+ 1 ftp ftp 67 Sep 17 16:12 1.sh   #文件详情多个+[root@mvpbang tmp]# getfacl 1.sh # file: 1.sh# owner: ftp# group: ftpuser::rw-user:ftp:rwx     #多个附属的ftp的权限group::r--mask::rwxother::r--

setfacl命令参数

[root@mvp tmp]# setfacl -hsetfacl 2.2.49 -- set file access control listsUsage: setfacl [-bkndRLP] { -m|-M|-x|-X ... } file ...  -m, --modify=acl        modify the current ACL(s) of file(s)  -M, --modify-file=file  read ACL entries to modify from file  -x, --remove=acl        remove entries from the ACL(s) of file(s)  -X, --remove-file=file  read ACL entries to remove from file  -b, --remove-all        remove all extended ACL entries  -k, --remove-default    remove the default ACL      --set=acl           set the ACL of file(s), replacing the current ACL      --set-file=file     read ACL entries to set from file      --mask              do recalculate the effective rights mask  -n, --no-mask           don't recalculate the effective rights mask  -d, --default           operations apply to the default ACL  -R, --recursive         recurse into subdirectories  -L, --logical           logical walk, follow symbolic links  -P, --physical          physical walk, do not follow symbolic links      --restore=file      restore ACLs (inverse of `getfacl -R')      --test              test mode (ACLs are not modified)  -v, --version           print version and exit  -h, --help              this help text

 

转载地址:http://eiiso.baihongyu.com/

你可能感兴趣的文章
Unity5.1 新的网络引擎UNET(十五) Networking 引用--中
查看>>
用任务计划管理计划任务对付任务计划-禁止WPS提示升级
查看>>
Android——SlidingMenu学习总结
查看>>
React-Native 之 GD (十六)首页筛选功能
查看>>
UI概念体系要素
查看>>
SSISDB5:使用TSQL脚本执行Package
查看>>
performSelectorInBackground V.S detachNewThreadSelector?
查看>>
linux,Centos,bash: service: command not found
查看>>
【转】UIColor对颜色的自定义
查看>>
php编译报错 configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-...
查看>>
asp.net后台进程做定时任务
查看>>
Ural_1671. Anansi's Cobweb(并查集)
查看>>
Web墨卡托坐标与WGS84坐标互转
查看>>
给vs2012换肤
查看>>
java接口中多继承的问题
查看>>
索引笔记《二》确定需要建立索引的列
查看>>
libjpeg的问题
查看>>
MySQL数据库学习笔记(八)----JDBC入门及简单增删改数据库的操作
查看>>
git 显示多个url地址推送
查看>>
Java Web之Filter
查看>>