2

I installed Xubuntu and am not a huge fan of it.

I want Ubuntu back and can't figure out how to make a bootable usb on Xubuntu.

Please tell me my options

MeSo2
  • 451
Quinn M
  • 21

3 Answers3

14

You could also use "Startup Disk Creator". This comes with the standard Ubuntu desktop but you should be able to use apt-get to install it in other flavours.

sudo apt-get update
sudo apt-get install usb-creator-gtk
5

No need to reinstall the OS, I feel that it is unnecessary. You can install various desktop environments in xubuntu.
Installing unity in xubuntu:

sudo apt-get install unity    

Installing gnome3 in xubuntu:

sudo apt-get install gnome-shell  

You can choose between various desktop environments while logging in

4

Although no need to reinstall Ubuntu the answer to your question is:

You can dd the iso to USB which is enough for it to be bootable. If you do not mind using command line you can create a bootable usb with:

dd if=ubuntu.iso of=/dev/sdx oflag=direct bs=1M

Replace sdx with the whatever the target usb device is called when plugged in (use lsblk command to check) and notice that it is not the partition but the device itself.

Another option in Unetbootin.

Make sure to select destination device carefully, as this command deletes all data on the target device.

Zanna
  • 72,312