Format an ext4 partition to FAT32 on Windows 8.1
Solved
johnsmith29
Posted messages
30
Status
Member
-
pecunia Posted messages 4 Status Member -
pecunia Posted messages 4 Status Member -
Hello,
I would like to restore a micro SD card to factory settings by formatting it, but I don't know how to format the ext4 partition. I can access it in "disk management," but I get an error message when I try to format it. Could someone provide some guidance? I tried using ext2fsd with no success.
Actually, I have 2 partitions on the SD card due to the installation of a Linux distribution:
-- FAT32 - 248MB
-- EXT4 - ~60GB
Thank you in advance, I am available for any questions. Please also keep it polite :)
I would like to restore a micro SD card to factory settings by formatting it, but I don't know how to format the ext4 partition. I can access it in "disk management," but I get an error message when I try to format it. Could someone provide some guidance? I tried using ext2fsd with no success.
Actually, I have 2 partitions on the SD card due to the installation of a Linux distribution:
-- FAT32 - 248MB
-- EXT4 - ~60GB
Thank you in advance, I am available for any questions. Please also keep it polite :)
1 answer
-
Hello,
Launch the Command Prompt as Administrator (Right-click in the bottom left of the menu) and type: (Press Enter after each line)
diskpart
list disk
select disk X (replace X with the number of the SD card)
clean
create partition primary
format fs=fat32 quick
assign
exit
exit
Be careful not to choose the wrong disk.
You should receive a success confirmation after each command.-
-
-
RE
I did not take into account the 60 GB, and Windows does not format partitions larger than 32 GB in FAT32.
If you really want FAT32, try this program:
https://www.commentcamarche.net/telecharger/utilitaires/9645-fat32formatter/ -
-
-