aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 11 insertions, 17 deletions
diff --git a/README.md b/README.md
index a1f7950..0b0c2e0 100644
--- a/README.md
+++ b/README.md
@@ -11,23 +11,17 @@
11 11
12### crypttab 12### crypttab
13 13
14``` 14 # /etc/crypttab example
15# /etc/crypttab example 15 SomeDisk_SDSSDH0000G_123456789-part2 /dev/disk/by-id/SomeDisk_SDSSDH0000G_123456789-part2 /etc/.crypt/SomeDisk_SDSSDH0000G_123456789-part2.key noauto,x-systemd.device-timeout=5s
16
17SomeDisk_SDSSDH0000G_123456789-part2 /dev/disk/by-id/SomeDisk_SDSSDH0000G_123456789-part2 /etc/.crypt/SomeDisk_SDSSDH0000G_123456789-part2.key noauto,x-systemd.device-timeout=5s
18```
19 16
20### fstab 17### fstab
21 18
22``` 19 # /etc/fstab example
23# /etc/fstab example 20
24 21 # Note that the connector name has been removed from the mountpoint.
25# Note that the connector name has been removed from the mountpoint. 22 # The automount unit will be named after that and so must the zfs dataset
26# The automount unit will be named after that and so must the zfs dataset 23 /dev/disk/by-id/ata-SomeDisk_SDSSDH0000G_123456789-part1 /media/SomeDisk_SDSSDH0000G_123456789-part1 auto defaults,noauto,ro,x-systemd.automount,x-mount.mkdir,x-systemd.idle-timeout=1min,x-systemd.device-timeout=5s 0 0
27/dev/disk/by-id/ata-SomeDisk_SDSSDH0000G_123456789-part1 /media/SomeDisk_SDSSDH0000G_123456789-part1 auto defaults,noauto,ro,x-systemd.automount,x-mount.mkdir,x-systemd.idle-timeout=1min,x-systemd.device-timeout=5s 0 0 24
28 25 # The following name takes the name we gave our disk in the crypttab (first column).
29# The following name takes the name we gave our disk in the crypttab (first column). 26 # Such devices are then available via /dev/mapper/:
30# Such devices are then available via /dev/mapper/: 27 /dev/mapper/SomeDisk_SDSSDH0000G_123456789-part2 /media/SomeDisk_SDSSDH0000G_123456789-part2 auto defaults,noauto,ro,x-systemd.automount,x-mount.mkdir,x-systemd.idle-timeout=1min,x-systemd.device-timeout=5s 0 0
31/dev/mapper/SomeDisk_SDSSDH0000G_123456789-part2 /media/SomeDisk_SDSSDH0000G_123456789-part2 auto defaults,noauto,ro,x-systemd.automount,x-mount.mkdir,x-systemd.idle-timeout=1min,x-systemd.device-timeout=5s 0 0
32```
33
..