From 2d44d209b44ef7135718323b02ca2a156bc3586f Mon Sep 17 00:00:00 2001 From: SyntaxError2505 <162549129+SyntaxError2505@users.noreply.github.com> Date: Fri, 17 Jul 2026 21:12:50 +0200 Subject: [PATCH 1/2] Added note for users to test fstab before rebooting Added instructions for running 'mount -a' to check fstab issues and enabled TRIM for LVM by modifying lvm.conf. --- src/config/ssd.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config/ssd.md b/src/config/ssd.md index b564d9b8d..40759c9e2 100644 --- a/src/config/ssd.md +++ b/src/config/ssd.md @@ -55,6 +55,8 @@ at `/`: /dev/sda1 / ext4 defaults,discard 0 1 ``` +Then run `mount -a` to mount every drive and show any issues with fstab. If you have for example forgotten a comma, your system will boot in a limited recovery mode that allows to fix it on reboot. + ## LVM To enable TRIM for LVM's commands (`lvremove`, `lvreduce`, etc.), open From d9f675567bde0ccbc429457c541000c9036106a3 Mon Sep 17 00:00:00 2001 From: SyntaxError2505 <162549129+SyntaxError2505@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:15:11 +0200 Subject: [PATCH 2/2] switch to safer way of verification --- src/config/ssd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/ssd.md b/src/config/ssd.md index 40759c9e2..c0350f5cd 100644 --- a/src/config/ssd.md +++ b/src/config/ssd.md @@ -55,7 +55,7 @@ at `/`: /dev/sda1 / ext4 defaults,discard 0 1 ``` -Then run `mount -a` to mount every drive and show any issues with fstab. If you have for example forgotten a comma, your system will boot in a limited recovery mode that allows to fix it on reboot. +Verify fstab using `findmnt --verify`. If you reboot with errors, your system will enter rescue mode. ## LVM