Skip to content

Instantly share code, notes, and snippets.

@brannondorsey
Created September 14, 2016 18:48
Show Gist options
  • Save brannondorsey/53454a0d3627794a9c86870caed72e74 to your computer and use it in GitHub Desktop.
Save brannondorsey/53454a0d3627794a9c86870caed72e74 to your computer and use it in GitHub Desktop.

#Making Persistent Live USBs is Harder Than it Should Be 9/14/2016

What used to be easy with Ubuntu's Starup Disk Creator (usb-creator-common + usb-creator-gtk) is now a lot harder than it should be on UEFI systems. Some version before v0.2.66 have a bug that allows you to specify live usb persistence, however it doesn't actually work. Versions > 0.3 have removed this functionality completely (wtf!).

An alternative that worked for me was using mkusb from an installed Ubuntu distro (I could not get this to work creating live USBs from live USBs).

Steps on Ubuntu 16.06 include:

sudo apt-add-repository universe
sudo apt-add-repository ppa:mkusb/ppa
sudo apt-get update
sudo apt-get install mkusb
sudo -H /usr/sbin/mkusb path/to/iso p # p specifies persistence

Then follow onscreen instructions. Another solution that was mentioned on forums includes unetbootin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment