How to format my pendrive?ade it bootable by power iso

0

I made my pendrive bootable by poweriso and loaded centos on it. But now my pendrive cant be formatted. First it was showing the in this pc but when i tried to format it there was an error and now i cant see it in this pc .It is visible in device manager showing read only mode.

Anurag Maithani

Posted 2015-08-21T14:09:19.570

Reputation: 43

2

You mention Device Manager, is this Windows? Or Linux? For Windows, you could use Rufus - http://rufus.akeo.ie/ and I have had good luck with it. I know there are USB Tools in LINUX Mint.

– Leptonator – 2015-08-21T14:17:51.990

Answers

1

enter image description hereWarning doing the operation on the wrong disk will cause you more issues

In windows the most reliable way is to use the CMD prompt and run diskpart

  • Enter list disk make a note of which is the USB disk - you can usually tell easily by the reported capacity.
  • Then issue select disk N - replace N with the drive number from before
  • Then run clean - this should then make the disk acceptable to any system for formatting.

On linux you can accomplish the same thing by running:

dd if=/dev/zero of=/dev/sdN bs=1024K count=1

Where n would be a, b, c..

albal

Posted 2015-08-21T14:09:19.570

Reputation: 1 155