Sunday, July 12, 2009

Mount时是否需要增加ACL?

配置软件时, 在手册上看到需要为文件系统增加acl的配置:
如:
UUID=d4cfe48c-4332-4357-bcc8-1ed977449e89 / ext3
acl,relatime,errors=remount-ro 0 1

查看mount的手册关于这点的说明:
acl / noacl
Support POSIX Access Control Lists (or not).
这就怪了. linux下的ext3不是默认使用Posix access control的吗, 还要增加才使用的?

为了测试这个是否有区别, 做如下测试:

1. 在没有使用acl的Mount参数时, 即使用默认的参数:

UUID=4da85cc9-48ad-4ab0-947e-13fba2d02684 / ext3
relatime,errors=remount-ro 0

参数tune2fs -l /dev/sda1得到的信息为:
Filesystem features: has_journal ext_attr resize_inode dir_index
filetype needs_recovery sparse_super

2. 使用acl参数时:
sudo mount -o remount,rw,acl /

结果使用acl后的Filesystem features还是与没有使用一样.

总结:
* ext在没有声明去掉acl的情况下, 默认使用acl

tag: tune2fs

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.