From 4eb6bf9241c6b7330e5ac7e8cf13f69b4bfe1bdd Mon Sep 17 00:00:00 2001 From: Gray Williams Date: Sun, 3 May 2026 14:39:38 +0100 Subject: [PATCH] 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 --- articles/linux-disk-encryption-end-user.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/linux-disk-encryption-end-user.md b/articles/linux-disk-encryption-end-user.md index 89fc679c84..a5e476868f 100644 --- a/articles/linux-disk-encryption-end-user.md +++ b/articles/linux-disk-encryption-end-user.md @@ -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.