Created How to Format SDCard (markdown)

sommermorgentraum 2024-12-13 15:57:32 +08:00
parent 031d793481
commit f7deffd4de

21
How-to-Format-SDCard.md Normal file

@ -0,0 +1,21 @@
# Linux
Usually all the Desktop Environment provide it's own GUI partition tool. for example GPartition or KDE Partition Manager. If you wanna use CLI way:
1. Identify the SD card device with `sudo fdisk -l`.
2. Unmount the SD card with `sudo umount /dev/sdX1`.
3. Format the SD card with `sudo mkfs.vfat -F 32 /dev/sdX1`.
4. (Optional) Label the SD card with `sudo mkfs.vfat -F 32 -n "SDCARD" /dev/sdX1`.
5. Mount the SD card with `sudo mount /dev/sdX1 /mnt`.
# macOS
Just use Disk Utility app.
# Windows
- If your sdcard capacity is smaller or equal than/to 32G, just right-click the sdcard driver in Explorer
- If your sdcard capacity is greater than 32G, Download a free partition manager (for example Disk Genius) and format with it.
# I DON'T KNOW WHAT IS WINDOWS/Linux/macOS
Just follow the Windows chapter.