PDA

View Full Version : Format/Reinitialize USB Flash drives [SOLVED]


rodonn
07-04-2007, 12:15 AM
How do I format a USB Flas drive? FAT32 is the weapon of choice...

putu
07-04-2007, 02:11 AM
Use XP :evil:

rodonn
07-04-2007, 02:26 AM
Not exactly useful. In fact a waste of bandwidth. Klootzak.

pheet
07-04-2007, 01:35 PM
I did this a couple of days ago.

You need to know the device name, in my case it was /dev/da0

From a console:
ls /dev/da*

should list available USB devices. If the stick is already mounted (have a look in konqueror system:/media ), unmount it first (in konqueror right click, unmount).

From a console (e.g. Konsole):
su
Password:
# newfs_msdos -L usbstick -F 32 /dev/da0


For more options, type man newfs_msdos from the console.

HTH

rodonn
07-04-2007, 03:21 PM
Thx... I'd aproposed every combination of format and initialise I could think of...

pheet
07-04-2007, 03:32 PM
Thx... I'd aproposed every combination of format and initialise I could think of...

NP. If it works ok, edit the title of your post to .. [SOLVED] :)

putu
07-05-2007, 04:23 AM
I did this a couple of days ago.

You need to know the device name, in my case it was /dev/da0

From a console:
ls /dev/da*

should list available USB devices. If the stick is already mounted (have a look in konqueror system:/media ), unmount it first (in konqueror right click, unmount).

From a console (e.g. Konsole):
su
Password:
# newfs_msdos -L usbstick -F 32 /dev/da0


For more options, type man newfs_msdos from the console.

HTH

Valuable information. :D

Thanks pheet