fix spelling errors lmde-3-disk-encryption/index.html

This commit is contained in:
Trent Palmer 2020-03-23 22:37:07 -07:00
parent e9fce3abd3
commit 5fdf606f1a

View File

@ -154,10 +154,10 @@ sdb 8:32 1 14.5G 0 disk
<code>sgdisk /dev/sda <nobr>-p</nobr></code> <code>sgdisk /dev/sda <nobr>-p</nobr></code>
</li> </li>
<li>format the efi partition<br> <li>format the efi partition<br>
<code>makefs.vfat <nobr>-F32</nobr> /dev/sda1</code> <code>mkfs.vfat <nobr>-F32</nobr> /dev/sda1</code>
</li> </li>
<li>format the /boot partition<br> <li>format the /boot partition<br>
<code>makefs.ext4 /dev/sda2</code> <code>mkfs.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>
@ -166,7 +166,7 @@ sdb 8:32 1 14.5G 0 disk
<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>mkfs.xfs /dev/mapper/cryptroot</code>
</li> </li>
</ul> </ul>
</section> </section>