1

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
  • 421
  • 1
  • 9
  • 24
Quinn M
  • 11
  • Just as hint - there is no need to reinstall - you can easily have 1 installation which offers several different desktop environments (i.e. Gnome Shell, Unity, XFCE etc) You can choose on the login-screen which to use if you have several installed. – dufte May 31 '16 at 06:44
  • If you still want to create the USB, here is a link: https://xubuntublog.wordpress.com/tag/usb-creator/ – Christopher Angulo-Bertram May 31 '16 at 07:03

3 Answers3

10

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

  • Alternative to that would be sudo apt-get install ubuntu-desktop , which gives full package of the default Ubuntu installation. See related question I've asked a while back http://askubuntu.com/q/793886/295286 – Sergiy Kolodyazhnyy Nov 25 '16 at 03:27
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
  • 70,465