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