Changes

Talk:Partition and Format a USB Flash Drive with Linux

943 bytes added, 20:52, 4 December 2020
/* wipe your flash drive */ new section
The following lines were added (+) and removed (-):
== wipe your flash drive ==Have you tried fdisk? In a terminal, run sudo fdisk /dev/sdxwhere /dev/sdx should be replaced with the device file for your flash drive. Once you get fdisk open, type p to list the partition table, and if the mysterious partition is listed, you can use d # to delete it. (# is the number of the partition, so e.g. d 1, d 2) w writes the partition table back to the disk and q quits. (hit m for help)If even fdisk fails, I guess you could just try zeroing out the first sector, which I think contains the partition table. sudo dd if=/dev/zero of=/dev/sdx bs=512 count=1where, again, /dev/sdx should be replaced with the actual device for your flash drive, will do that for you. You can increase the count= number to write zeros to more of the disk, or omit it entirely to overwrite the entire disk. Needless to say, if you do this, you irretrievably lose any files that may have been stored on the disk.
Bureaucrat, administrator
16,192
edits