OK. Zum 4. Feld.
Vorgeschlagen sind jetzt die Optionen
- defaults
das entspricht
rw,suid,dev,exec,auto,nouser,async
- rw,auto,nouser,nofail,nosuid,nodev,noexec
Beides enthält
nouser das ist das, was ich nicht will.
Auf
https://wiki.debian.org/fstab sind folgende Optionen erklärt:
- auto - file system will mount automatically at boot, or when the command 'mount -a' is issued.
- noauto - the filesystem is mounted only when you tell it to.
- exec - allow the execution binaries that are on that partition (default)
- noexec - do not allow binaries to be executed on the filesystem
- ro - mount the filesystem read only
- rw - mount the filesystem read-write
- sync - I/O should be done synchronously
- async - I/O should be done asynchronously
- flush - specific option for FAT to flush data more often, thus making copy dialogs or progress bars to stays up until things are on the disk
- user - permit any user to mount the filesystem (implies noexec,nosuid,nodev unless overridden)
- nouser - only allow root to mount the filesystem (default).
- defaults - default mount settings (equivalent to rw,suid,dev,exec,auto,nouser,async).
- suid - allow the operation of suid, and sgid bits. They are mostly used to allow users on a computer system to execute binary executables with temporarily elevated privileges in order to perform a specific task
- nosuid - block the operation of suid, and sgid bits
- noatime - do not update inode access times on the filesystem. Can help performance
- nodiratime - do not update directory inode access times on the filesystem. Can help performance. You do not need to enable this flag if you have already enabled noatime.
- relatime - update inode access times relative to modify or change time. Access time is only updated if the previous access time was earlier than the current modify or change time (similar to noatime, but doesn't break mutt or other applications that need to know if a file has been read since the last time it was modified). Can help performance.
1 und 2 sind klar. Das Laufwerk soll automatisch gemountet werden. ich brauche also
auto
Auch 3 und 4 sind klar. 4 wäre falsch. 3 brauche ich nicht, weil es der Defaultwert ist.
Auch 5 und 6 sind klar. Ich brauche
rw.
Bei 7 und 8 habe ich keine Ahnung. Muss ich das festlegen? Wozu? Welche Folgen haben die beiden Optionen?
Was ist mit 9?
10 und 11 verwirren mich. Wenn ein Laufwerk durch die fstab eingehängt wird, bewirkt das doch nichts? Die fstab wird ja nicht von einem User ausgeführt. Aber ich vermute, das gilt nicht nur für's Einhängen, sondern auch für's Aushängen. Und dann für's wieder Einhängen. Ich vermute, ich brauche
user.
Bei 13 und 14 gehe ich davon aus, dass ich
suid brauche.
15 und 16 halte ich für schädlich. Bei 17 weiß ich es nicht. Ich vermute, das ist sinnvoll.
Jetzt muss ich wohl erst mal klären, welche dieser Optionen bei exfat verwendet werden können.