Chinaunix首页 | 论坛 | 博客
  • 博客访问: 160272
  • 博文数量: 126
  • 博客积分: 1073
  • 博客等级: 上尉
  • 技术积分: 1175
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-12 00:32
文章分类

全部博文(126)

文章存档

2018年(56)

2013年(1)

2012年(8)

2011年(61)

分类: LINUX

2011-06-14 22:54:00

一个文件权限的问题

[root@station15 ~]$ id student1

uid=505(student1) gid=500(student) groups=500(student) context=root:system_r:unconfined_t:SystemLow-SystemHigh

[root@station15 ~]$ id student2

uid=506(student2) gid=500(student) groups=500(student) context=root:system_r:unconfined_t:SystemLow-SystemHigh

[root@station15 ~]# mkdir /a

[root@station15 ~]# su - student1

[student1@station15 ~]$ cd /a

[student1@station15 a]$ >b

[student1@station15 a]$ ll b

-rw-r--r-- 1 student1 student 0 06-14 22:18 b

[student1@station15 a]$ setfacl -m u:student2:rwx b

[student1@station15 a]$ ll b

-rw-rwxr--+ 1 student1 student 0 06-14 22:18 b

[student1@station15 a]$ getfacl b

# file: b

# owner: student1

# group: student

user::rw-

user:student2:rwx

group::r--

mask::rwx

other::r--

 

[student1@station15 a]$ su - student2

口令:

[student2@station15 ~]$ vim /a/b

aaaaaaaaa

可以写入,继续

[student2@station15 ~]$ su - student1

口令:

[student1@station15 ~]$ chmod 644 /a/b

[student1@station15 ~]$ ll /a/b

-rw-r--r--+ 1 student1 student 21 06-14 22:22 /a/b

[student1@station15 ~]$ getfacl /a/b

getfacl: Removing leading '/' from absolute path names

# file: a/b

# owner: student1

# group: student

user::rw-

user:student2:rwx               #effective:r--

group::r--

mask::r--

other::r--

 

[student1@station15 ~]$ su - student2

口令:

[student2@station15 ~]$ vim /a/b

 

aaaaaaaa

bbbbbbbb

:wq!保存

[student2@station15 ~]$ ll /a/b

-rw-r--r-- 1 student2 student 42 06-14 22:43 /a/b

[student2@station15 ~]$ vim /a/b

aaaaaaaa

bbbbbbbb

可以看出强制执行成功,acl消失,拥有者改变

[student2@station15 ~]$ su - student1

口令:

[student1@station15 ~]$ vim /a/b

 

 

aaaaaaaa

bbbbbbbb

ccccccccc

:wq!保存

[student1@station15 ~]$ ll /a/b

-rw-r--r-- 1 student1 student 63 06-14 22:50 /a/b

[student1@station15 ~]$ vim /a/b

aaaaaaaa

bbbbbbbb

ccccccccc

阅读(947) | 评论(0) | 转发(0) |
0

上一篇:发泄~~~~~···

下一篇:dns整理

给主人留下些什么吧!~~