我正在嘗試在 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放在哪裡?錯誤=重新安裝-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