I'm a total newbie in Linux specially Ubuntu, I'm just asking on how to format a USB using Ubuntu terminal. Hope you can help me thanks!
I'm a total newbie in Linux specially Ubuntu, I'm just asking on how to format a USB using Ubuntu terminal. Hope you can help me thanks!
First, you have to find out which device (
/dev/sd??
) your USB stick is. Therefore look at the output ofAfter that unmount the device/partition (if necessary) by running
Make sure you replaced
??
with the correct device/partition name from the previous output.To format The partition as FAT32 use
Again replace
??
with your respective letters.Be careful that if you enter the wrong device name, you might also accidentally format your hard disk!
You can also do
and you don't have to put "sudo" in front of everything!