diff options
author | Gustav Eek <gustav@fripost.org> | 2011-11-15 22:11:01 +0100 |
---|---|---|
committer | Gustav Eek <gustav@fripost.org> | 2011-11-15 22:11:01 +0100 |
commit | e7f0bca352166a39dd072ed42b2131a968d587ef (patch) | |
tree | 1de499ab31f8e3273cb73a323ebb9ebd5fcfde08 | |
parent | a6c8505eaddb2e736c3881bdd8fa0b94e0314c15 (diff) |
Correction made to how to mount Raid discs.
-rw-r--r-- | admin-log.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin-log.org b/admin-log.org index 9357b46..9cca2e0 100644 --- a/admin-log.org +++ b/admin-log.org @@ -22,7 +22,7 @@ Then also the logical volume management (LVM) was needed to set up. : $ ls -1 /dev | grep 2T; # shows nothing : # vgchange --available y 2T_vg-backup : $ ls -1 /dev | grep 2T; # shows VG 2T_vg-backup - : # cryptsetup luksOpen 2T_vg-backup/backup backup + : # cryptsetup luksOpen /dev/2T_vg-backup/backup backup : # sudo mount -t ext4 /dev/mapper/backup /mnt/backup The =/etc/fstab= is no longer correct since "ext4dev" is not a supported file system. Instead "ext4" should be used. |