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은 어디에 넣나요? 오류 후=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. 그렇습니다. aclafter를 추가할 수 있습니다 errors=remount-ro.

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

관련 정보