From 23b73851afb9cc0f6077d668e833297a7b531b3c Mon Sep 17 00:00:00 2001 From: julien Date: Wed, 1 Oct 2025 18:52:49 +0200 Subject: [PATCH] "Updates" --- Turing Pi/compute-modules.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Turing Pi/compute-modules.md b/Turing Pi/compute-modules.md index b6703c2..7163023 100644 --- a/Turing Pi/compute-modules.md +++ b/Turing Pi/compute-modules.md @@ -348,6 +348,7 @@ Choose "Exit to shell" --- ### Disk(s) +#### Format and mount the disks ```bash sudo fdisk -l @@ -412,7 +413,10 @@ UUID=... () ``` UUID=e8d74f7a-642a-486d-92db-d39388d1545f (/dev/nvme0n1) ``` - +#### If needed, check and repair the filesystem +```bash +sudo e2fsck -fDC0 /dev/sdaX +``` ```bash sudo mkdir -p /mnt/ echo "UUID=... /mnt/ ext4 defaults 0 0" | sudo tee -a /etc/fstab @@ -422,6 +426,7 @@ sudo systemctl daemon-reload # df -h /mnt/ ``` +### Hosts ```bash sudo vim /etc/hosts ```