mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-11-21 19:31:29 -08:00
replace / with / in lmde-3-disk-encryption
This commit is contained in:
parent
f5faa661db
commit
e9fce3abd3
@ -147,7 +147,7 @@ sdb 8:32 1 14.5G 0 disk
|
|||||||
<li>create a new /boot partition for /dev/sda<br>
|
<li>create a new /boot partition for /dev/sda<br>
|
||||||
<code>sgdisk /dev/sda <nobr>--new=2::+1G</nobr></code>
|
<code>sgdisk /dev/sda <nobr>--new=2::+1G</nobr></code>
|
||||||
</li>
|
</li>
|
||||||
<li>create a new / partition for /dev/sda<br>
|
<li>create a new "/" partition for /dev/sda<br>
|
||||||
<code>sgdisk /dev/sda <nobr>--new=3</nobr></code>
|
<code>sgdisk /dev/sda <nobr>--new=3</nobr></code>
|
||||||
</li>
|
</li>
|
||||||
<li>verify your partition work<br>
|
<li>verify your partition work<br>
|
||||||
@ -159,13 +159,13 @@ sdb 8:32 1 14.5G 0 disk
|
|||||||
<li>format the /boot partition<br>
|
<li>format the /boot partition<br>
|
||||||
<code>makefs.ext4 /dev/sda2</code>
|
<code>makefs.ext4 /dev/sda2</code>
|
||||||
</li>
|
</li>
|
||||||
<li>encrypt the / partition, you will be prompted for a password<br>
|
<li>encrypt the "/" partition, you will be prompted for a password<br>
|
||||||
<code>cryptsetup <nobr>-y -v</nobr> luksFormat <nobr>--type</nobr> luks2 /dev/sda3</code>
|
<code>cryptsetup <nobr>-y -v</nobr> luksFormat <nobr>--type</nobr> luks2 /dev/sda3</code>
|
||||||
</li>
|
</li>
|
||||||
<li>decrypt the / partition, you will be prompted for a password<br>
|
<li>decrypt the "/" partition, you will be prompted for a password<br>
|
||||||
<code>cryptsetup open /dev/sda3 cryptroot</code>
|
<code>cryptsetup open /dev/sda3 cryptroot</code>
|
||||||
</li>
|
</li>
|
||||||
<li>format the / device<br>
|
<li>format the "/" device<br>
|
||||||
<code>makefs.xfs /dev/mapper/cryptroot</code>
|
<code>makefs.xfs /dev/mapper/cryptroot</code>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user