I was trying to make pendrive bootable using UNetbootbin but was getting following message. I am very confused that why I am getting so. Please help me to solve the issue. [http://oi59.tinypic.com/352lrty.jpg].
Asked
Active
Viewed 133 times
2 Answers
1
If you already have the ISO downloaded, you can try using "dd" instead.
Open up a terminal and type
sudo dd if=/path/to/iso of=/dev/sdc

Aaron Franke
- 1,126
0
The pendrive is no longer mounted.
Unplug the drive and plug it back in to mount the device.

mchid
- 43,546
- 8
- 97
- 150
cat
(which is sometimes faster thandd
) – mchid Aug 15 '15 at 07:14cat /path/to/iso > /dev/sdc
– mchid Aug 15 '15 at 07:22