Unfortunately SDFormatter was not available for Linux so i made this. It is a tool to format your SD card the way the SD Association intended but under Linux. It offers a few features the official tool does not like FAT32 for SDXC cards.
Multiple SD cards with different capacities have been tested and this tool formats them 1:1 the same as SDFormatter with the following exceptions:
- SDFormatter does not set the jmp instruction offset in the boot sector for FAT12/16/32. sdFormatLinux does.
- For exFAT sdFormatLinux clears the area between last FAT entry and cluster heap but SDFormatter doesn't. As far as i can tell this difference doesn't matter.
- sdFormatLinux currently does not preserve OEM flash parameters when reformatting in exFAT. It will recalculate the correct values instead.
Erase (TRIM) and format SD card (recommended). TRIM will not work with USB card readers and is ignored if used with one.
sudo sdFormatLinux -e trim /dev/mmcblkX
where X is a number.
Erase and format with label.
sudo sdFormatLinux -l 'MY LABEL' -e trim /dev/mmcblkX
Erase and format a SDXC card to FAT32 (64 KiB clusters).
sudo sdFormatLinux -e trim -f /dev/mmcblkX
Q: Why should i format my SDXC card with this tool to FAT32 instead of using guiformat/other tools?
A: Because most of these tools are not designed for flash based media and will format them incorrectly causing lower lifespan and performance.
There is a common myth that you should only use 32 KB (actually KiB) clusters which is false. sdFormatLinux will use 64 KiB clusters when formatting SDXC cards to FAT32 and it works in every device compliant to Microsoft's FAT specification.
Just run make
. It automatically builds a hardened version.
This software is licensed under the MIT license. See LICENSE.txt for details.