Skip to content

Commit 6580e31

Browse files
committed
Fix shortcuts and address feedback
1 parent f3d0e5a commit 6580e31

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

content/password.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ First, bring up the <u>systemd-boot</u> menu by holding down <kbd>SPACE</kbd> or
3030

3131
![systemd-boot](/images/password/systemd-boot.png)
3232

33-
Once the recovery operating system boots, close out of the installation window or choose **“try demo mode”** (be sure not to choose any install or repair options, as this could result in data loss).
33+
Once the live disk boots move to a new workspace, to do this on Ubuntu use the Activities button in the top left and on Pop!\_OS use the Workspaces button in the top left (be sure not to choose any install or repair options in the installer window, as this could result in data loss).
3434

3535
### Ubuntu
3636

3737
If you are using Ubuntu we can boot from a live disk and [here](/articles/live-disk) are instructions for creating the live disk. Once the live disk has been created refer to this [article](/articles/boot-menu) for booting from the live disk.
3838

3939
#### Mounting the Installed OS
4040

41-
Press <kbd><font-awesome-icon :icon="['fab', 'pop-os']"></font-awesome-icon></kbd>/<kbd><font-awesome-icon :icon="['fab', 'ubuntu']"></font-awesome-icon></kbd>+<kbd>T</kbd> to open a terminal, and type in these commands:
41+
On Pop!\_OS press <kbd><font-awesome-icon :icon="['fab', 'pop-os']"></font-awesome-icon></kbd>+<kbd>T</kbd> or on Ubuntu press <kbd><font-awesome-icon :icon="['fab', 'ubuntu']"></font-awesome-icon></kbd>+<kbd>Alt</kbd>+<kbd>T</kbd> to open a terminal, and type in these commands:
4242

4343
```bash
4444
lsblk
@@ -104,23 +104,23 @@ Full Disk Encryption supports up to 8 total pass-phrases to unlock the encryptio
104104

105105
First let's list the partitions of all of the installed drives:
106106

107-
```
108-
lsblk -f
107+
```bash
108+
lsblk -o name,mountpoints
109109
```
110110

111111
The output may be different based on the drive setup and partition table. You can see the root partition at mountpoint '/'. From there we can use that output to run this command:
112112

113-
```
113+
```bash
114114
sudo cryptsetup luksDump /dev/sda3
115115
```
116116

117-
Replacing '/dev/sda3' with the location of the root partition on your system. With the output of this command we can see the seven extra slots that we have for passwords to decrypt the drive. On a normal install Slots 1-7 are the open, with Slot 0 as the initial pass-phrase.
117+
Replacing '/dev/sda3' with the location of the root partition on your system. With the output of this command we can see the seven extra slots that we have for passwords to decrypt the drive. On a normal install Slot 0 is the initial passphrase and you can add up to 6 more for a total of 7.
118118

119119
#### Set Extra Password
120120

121121
Following the partition scheme from the previous command we can form the next command to add a new key to the open Key Slot:
122122

123-
```
123+
```bash
124124
sudo cryptsetup luksAddKey /dev/sda3
125125
```
126126

@@ -130,7 +130,7 @@ This command will require the current encryption password before new password ca
130130

131131
Let's run this command again to confirm that the additional pass-phrase is set:
132132

133-
```
133+
```bash
134134
sudo cryptsetup luksDump /dev/sda3
135135
```
136136

0 commit comments

Comments
 (0)