Hello altogether,
a couple of weeks ago I updated my linux-system and copied the ISO-Image on an USB-stick so that I can boot it. It did work though, but now I don't have a clue how to format it back to a FAT32-system.
Any idea?
Thank you!
Simon
Hello altogether,
a couple of weeks ago I updated my linux-system and copied the ISO-Image on an USB-stick so that I can boot it. It did work though, but now I don't have a clue how to format it back to a FAT32-system.
Any idea?
Thank you!
Simon
Bootable ISOs written directly to a USB often leave the device with an ISO9660/hybrid layout that GUI formatters refuse to change. ’s report that restoring the device’s partition table made the drive formatable and ’s reminder about using the host OS formatter point to two general fixes: (1) wipe the old layout and recreate a fresh partition table, or (2) use the OS-native disk tool that can reinitialize the whole device. The notes below give safe, repeatable steps for Linux, Windows and macOS, plus common troubleshooting tips.
Linux (wipe and recreate a single FAT32 partition)
Check device name first, unmount any mounts, then remove old signatures and partition table and recreate a FAT32 partition:
sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL
sudo umount /dev/sdX*
sudo wipefs -a /dev/sdX
sudo dd if=/dev/zero of=/dev/sdX bs=1M count=10
sudo parted /dev/sdX mklabel msdos
sudo parted -a optimal /dev/sdX mkpart primary fat32 1MiB 100%
sudo mkfs.vfat -F32 -n USBLABEL /dev/sdX1 Always confirm the correct device (sdX) before writing; these commands destroy all data on the target.
Windows (DiskPart script)
Run an elevated Command Prompt and execute:
diskpart
list disk
select disk N (verify size)
clean
create partition primary
format fs=fat32 quick
assign
exit The Explorer Format dialog is fine if the stick already presents a normal partition.
macOS (Disk Utility or diskutil)
Disk Utility can erase and reformat. From the command line:
diskutil list
diskutil eraseDisk FAT32 USBLABEL MBRFormat /dev/diskN Troubleshooting notes
If the device stays read-only across OSes, check kernel messages (dmesg) for errors, try other USB ports/hosts, or test wipefs/dd again. Persistent read-only behavior can indicate firmware or hardware failure—vendor low-level tools or replacement may be required.
Jump to Post— Xlphos 16Are you formatting the disk using windows or linux?
if your using windows you should be able to format it by right-clicking on it and click format and select FAT.
Did you format this disk to something like ext3?
did you copy the iso or did you get …
Are you formatting the disk using windows or linux?
if your using windows you should be able to format it by right-clicking on it and click format and select FAT.
Did you format this disk to something like ext3?
did you copy the iso or did you get a distro to create a bootable usb disk for you?
Hi Xlphos.
I copied the iso myself but don't ask me which command I used.
I solved the problem yesterday. I could rewrite the MBR on linux with cfdisk. After that MacOS formated it correctly. That wasn't really a shortcut ^^but it did solve the problem though.
Many thanks
Simon
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.