From 8e914c55d546590b9f20f7cb0849a5055050f9bb Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Fri, 3 Jan 2025 11:30:25 -0500 Subject: [PATCH] update sd card format used in sd formatting instructions --- quorum-key-management/src/sd-formatting.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quorum-key-management/src/sd-formatting.md b/quorum-key-management/src/sd-formatting.md index df62251..c8548f2 100644 --- a/quorum-key-management/src/sd-formatting.md +++ b/quorum-key-management/src/sd-formatting.md @@ -10,15 +10,15 @@ * `lsblk` -4. Look for your SD card in the output of the `lsblk` command. It will typically be listed as /dev/sdX, where X is a letter (e.g., /dev/sdb, /dev/sdc). You can identify it by its size or by checking if it has a partition (like /dev/sdX1) +4. Look for your SD card in the output of the `lsblk` command. It will typically be listed as `/dev/sdX`, where X is a letter (e.g., `/dev/sdb`, `/dev/sdc`). You can identify it by its size or by checking if it has a partition (like `/dev/sdX1`) -5. Before formatting, you need to unmount the SD card. Replace /dev/sdX1 with the actual partition name you identified in the previous step: +5. Before formatting, you need to unmount the SD card. Replace `/dev/sdX1` with the actual partition name you identified in the previous step: * `sudo umount /dev/sdX1` 6. Use the mkfs command to format the SD card. You can choose the file system type (e.g., vfat for FAT32, ext4, etc.). Replace /dev/sdX with the actual device name (without the partition number): - * `sudo mkfs.ext4 /dev/sdX` + * `sudo mkfs.vfat /dev/sdX` 7. You can verify that the SD card has been formatted by running lsblk again or by checking the file system type: