You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -221,7 +224,7 @@ Do not modify any of these files.
221
224
This file is going to be taking care of activating these disks during the boot process so they can be later used by LVM or RAID.
222
225
223
226
Do not worry about the mount points on this file, as ADE will lose the ability to get the disks mounted as a normal file system after we do create a physical volume or a raid device on top of those encrypted devices(which will get rid of the file system format we used during the preparation process).
224
-
####Remove the temp folders and temp fstab entries
227
+
### Remove the temp folders and temp fstab entries
225
228
You unmount the filesystems on the disks that will be used as part of LVM
226
229
```bash
227
230
fordiskin c d e f;do umount /tempdata${disk};done
@@ -230,7 +233,7 @@ And remove the /etc/fstab entries:
230
233
```bash
231
234
vi /etc/fstab
232
235
```
233
-
####Verify that the disks are not mounted and that the entries on /etc/fstab were removed
236
+
### Verify that the disks are not mounted and that the entries on /etc/fstab were removed
234
237
```bash
235
238
lsblk
236
239
```
@@ -240,12 +243,12 @@ And configured:
240
243
cat /etc/fstab
241
244
```
242
245

243
-
###For LVM-on-Crypt:
246
+
## For LVM-on-crypt
244
247
Now that the underlying disks are encrypted, you can proceed to create the LVM structures.
245
248
246
249
Instead of using the device name, use the /dev/mapper paths for each of the disks to create a physical volume (on the crypt layer on top of the disk not on the disk itself).
247
250
### Configure LVM on top of the encrypted layers
248
-
#### Create the Physical Volumes
251
+
#### Create the physical volumes
249
252
You'll get a warning asking if it's OK to wipe out the filesystem signature.
250
253
251
254
You may continue by entering 'y' or use the echo "y" as shown:
#### Create filesystems on top of the LV structures
294
+
#### Create filesystems on top of the logical volume(s) structure(s)
292
295
```bash
293
296
echo"yes"| mkfs.ext4 /dev/vgdata/lvdata1
294
297
echo"yes"| mkfs.ext4 /dev/vgdata/lvdata2
@@ -329,7 +332,7 @@ shutdown -r now
329
332
lsblk
330
333
df -h
331
334
```
332
-
###For RAID-on-Crypt:
335
+
## For RAID-on-Crypt
333
336
Now the underlying disks are encrypted you can continue to create the RAID structures, same as LVM, instead of using the device name, use the /dev/mapper paths for each of the disks.
334
337
335
338
#### Configure RAID on top of the encrypted layer of the disks
0 commit comments