想要设置 acl,但我的 /etc/fstab 看起来不像文档

想要设置 acl,但我的 /etc/fstab 看起来不像文档

我正在尝试在 ubuntu 14 机器上安装 ACL。我的 /etc/fstab 文件看起来与文档我希望得到一些关于如何进行的建议。这是我的配置。

$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/vda1 during installation
UUID=050e1e34-39e6-4072-a03e-ae0bf90ba13a /               ext4    errors=remount-ro 0       1

我应该把 acl 放在哪里?在 errors=remount-ro 之后?我只想检查我是否正确实现了这个非常低级别的停止。谢谢。

答案1

语法fstab是:

device    mount-point    type    options    fs_freq    fs_passno

(或者,正如您在标题评论中看到的那样:)

<file system> <mount point>   <type>  <options>       <dump>  <pass>

在这种情况下,他们要求您添加acl选项,示例中的选项是defaults,而对您而言是errors=remount-ro。因此,是的,您可以acl在 之后添加errors=remount-ro

UUID=050e1e34-39e6-4072-a03e-ae0bf90ba13a    /    ext4    errors=remount-ro,acl 0       1

相关内容