MANPAGE: add fstab example

https://github.com/rfjakob/gocryptfs/issues/497
This commit is contained in:
Jakob Unterwurzacher 2020-11-14 15:27:40 +01:00
parent 8470cc38df
commit 14dac373c2
1 changed files with 8 additions and 0 deletions

View File

@ -579,6 +579,14 @@ Mount an encrypted view of joe's home directory using reverse mode:
gocryptfs -init -reverse /home/joe
gocryptfs -reverse /home/joe /home/joe.crypt
Adding this line to `/etc/fstab` will mount `/tmp/cipher` to `/tmp/plain` on boot, using the
password in `/tmp/passfile`. Use `sudo mount -av` to test the line without having
to reboot. Adjust the gocryptfs path acc. to the output of the command `which gocryptfs`.
Do use the `nofail` option to prevent an unbootable system if the gocryptfs mount fails (see
the `-nofail` option for details).
/tmp/cipher /tmp/plain fuse./usr/local/bin/gocryptfs nofail,allow_other,passfile=/tmp/password 0 0
EXIT CODES
==========