I tried to use Startup Disk Creator, but it seems that it can only create Ubuntu live disks. Is there any software that can help me create live USB disk for any .iso files? Please also mention how to use that software or provide a link to the guide of using that software.
3 Answers
You can use mkusb in Ubuntu to create USB boot drives for all the major linux distros. And you can use it in many other linux distros to create Ubuntu boot drives. The standard method clones the iso file to a live-only system on the target drive using dd under the hood. mkusb 'wraps a safety belt' around the powerful but dangerous dd tool.
See this link,
sudo add-apt-repository universe # only for standard Ubuntu
sudo add-apt-repository ppa:mkusb/ppa # and press Enter
sudo apt-get update
sudo apt-get install mkusb mkusb-nox usb-pack-efiThere is a list of tested operating systems,
Linux distros where mkusb works
0You could use dd from the terminal.
sudo dd if=/path/to/image.iso of=/dev/sd{device letter here}You can get the device letter by running in the terminal
fdisk -land check which device is your pendrive.
You can use the restore disk image option in Disk Utility.
Unetbootin is also a great tool for making bootable pendrive.
Installation:
sudo add-apt-repository ppa:gezakovacs/ppa
sudo apt-get update
sudo apt-get install unetbootinAfter installation, run the software and follow the on-screen instructions.