How to create a Debian/Fedora live USB on Ubuntu 17.10?

9,611

Solution 1

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,

help.ubuntu.com/community/mkusb

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-efi

There is a list of tested operating systems,

Linux distros where mkusb works

Solution 2

You 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 -l

and check which device is your pendrive.

Solution 3

You can use the restore disk image option in Disk Utility.

enter image description here

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 unetbootin

After installation, run the software and follow the on-screen instructions.

Share:
9,611

Related videos on Youtube

Shaw
Author by

Shaw

Updated on September 18, 2022

Comments

  • Shaw
    Shaw over 1 year

    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.