From 4fe63eebacb8001891a038df5666c1b9414fa134 Mon Sep 17 00:00:00 2001 From: arbitrary hexcode <3465882+0xDE57@users.noreply.github.com> Date: Sat, 9 Aug 2025 08:53:50 +0000 Subject: [PATCH] add note for dosfstools dependency if mkfs.vfat command fails --- How-to-Format-SDCard.md | 1 + 1 file changed, 1 insertion(+) diff --git a/How-to-Format-SDCard.md b/How-to-Format-SDCard.md index 01c2699..6874a3c 100644 --- a/How-to-Format-SDCard.md +++ b/How-to-Format-SDCard.md @@ -6,6 +6,7 @@ Usually all the Desktop Environment provide it's own GUI partition tool. for exa 2. Unmount the SD card with `sudo umount /dev/sdX1`. 3. Format the SD card with `sudo mkfs.vfat -F 32 /dev/sdX1`. + * if `mkfs.vfat: command not found` install dosfstools dependency (eg: `sudo pacman -S dosfstools`) 4. (Optional) Label the SD card with `sudo mkfs.vfat -F 32 -n "SDCARD" /dev/sdX1`.