2

NEED help, My primary language is not English, so here it goes: I already destroyed one of my flash drive Transcend Jetflash 790 32GB. GOT a replacement from the warranty. I'm trying to dual boot Linux (testing the distros) with win 11 pro. So I used RUFUS to flash it in DD mode. My system is UEFI and GPT. After a successful setup how do I restore my flash drive. I already messed up my previous one and caused a No media Drive.

How do I restore the flash drive (too its Original CONFIG 1 partition FAT32) after using it to flash a Linux ISO in DD mode? In DD mode it creates multiple partitions (or copies) sometimes multiple USB drives for instance. And can't seem to delete all partitions to reformat to only 1. I tried to reparation it in Linux Mint and after Erasing for 16mins and 99.9% it failed to restore to the original config but successfully removed all partitions. Then in windows, I deleted the whole partition and created a new drive and now it works fine. So the QUESTION is What is the proper way to restore a USB flash device after using it in Rufus to create an ISO in DD mode without destroying the flash drive.

2 Answers2

1

What is the proper way to restore a USB flash device after using it in Rufus to create an ISO in DD mode without destroying the flash drive.

This is answered in the Rufus FAQ:

What you really want to do is "restore" your drive to non-bootable state. And, of course Rufus has a very prominent way to allow you to do that.

See the Boot selection dropdown in Rufus? The one that has a Non bootable entry? Well, if you select that option, and pick whatever you want for the file system, then Rufus will happily "restore" your media to something Windows will recognize, with full capacity, and that you can use again to transfer files.

In short, the "proper" way is also to use Rufus to restore your flash drive. Just select Non bootable in the dropdown, and you'll be good.

Akeo
  • 7,541
0

The easiest way is, arguably, using MKUSB, in any Debian or Ubuntu derivatives, Linux Mint included:

  1. sudo add-apt-repository universe #usually not required because most Ubuntu flavor and unofficial derivatives already have this repository enabled by default;
  2. sudo add-apt-repository ppa:mkusb/unstable
  3. sudo apt update
  4. sudo apt install mkusb usb-pack-efi

Run MKUSB with the USB stick connected and then select the following option:

enter image description here

WARNING: Make sure you're selecting the correct drive. This operation is irreversible!

ChanganAuto
  • 1
  • 4
  • 18
  • 19