Update lsblk example on linux-disk-encryption-end-user.md (#44375)

The current example under verify encryption results in an error, as
ENCRYPTED is an unknown column

```
lsblk -o NAME,MOUNTPOINT,TYPE,SIZE,FSUSED,FSTYPE,ENCRYPTED
lsblk: unknown column: ENCRYPTED
```

- https://fleetdm.slack.com/archives/C09JAPRM1EJ/p1777467446591059
This commit is contained in:
Gray Williams
2026-05-03 14:39:38 +01:00
committed by GitHub
parent e17a894f2b
commit 4eb6bf9241
+1 -1
View File
@@ -34,7 +34,7 @@ Follow the steps below to get set up.
- Once installation is complete, verify that your disk is encrypted by running:
```bash
lsblk -o NAME,MOUNTPOINT,TYPE,SIZE,FSUSED,FSTYPE,ENCRYPTED
lsblk -o NAME,MOUNTPOINT,TYPE,SIZE,FSUSED,FSTYPE | grep -E 'crypt|LUKS'
```
- **Ubuntu Linux**: Look for the root (`/`) partition, and confirm it is marked as encrypted.
- **Fedora Linux**: Ensure the `/` (root) and `/home` partitions are encrypted.