Ich versuche, eine ACL auf einer Ubuntu 14-Box zu installieren. Meine /etc/fstab-Datei sieht nicht genau so aus wie dieDokumenteund ich hätte gerne einige Ratschläge zum weiteren Vorgehen. Hier ist meine Konfiguration.
$ 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
Wo lege ich die ACL ab? Nach Fehlern=remount-ro? Ich möchte nur überprüfen, ob ich diesen sehr niedrigen Stopp richtig implementiere. Danke.
Antwort1
Die Syntax fstab
lautet:
device mount-point type options fs_freq fs_passno
(oder, wie Sie in den Kopfkommentaren sehen können:)
<file system> <mount point> <type> <options> <dump> <pass>
In diesem Fall werden Sie aufgefordert, acl
die Optionen zu ergänzen. Die Optionen im Beispiel lauten defaults
, während sie für Sie lauten errors=remount-ro
. Sie können also das acl
Folgende hinzufügen errors=remount-ro
:
UUID=050e1e34-39e6-4072-a03e-ae0bf90ba13a / ext4 errors=remount-ro,acl 0 1