cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Dec. 21 2005,04:13 |
|
Boot DSL from livecd.
Open a terminal window and type:
dmesg | grep scsi -A 3
Find the device name for your USB disk, it is usually "sda" or "sdb". In this example, it is "sda". So we erase the drive and then repartition it manually. You then type:
sudo su dd if=/dev/zero of=/dev/sda cfdisk /dev/sda
and then create a new FAT or FAT16 partition #1.
Finally, format the partition with:
mkdosfs /dev/sda1 sync
And then you should have a "normal" USB drive again for MSWindows.
|