I recently switched to Bodhi Linux, and I want to switch back to Ubuntu. UNebootin doesn't work with Bodhi, and there aren't any other programs that let me create a live usb. Bodhi is the only os I have on my computer. Is there any way to switch back, or am I trapped forever?
Asked
Active
Viewed 1,146 times
1
-
possible duplicate of Create USB installer to install Ubuntu from the command line? – karel Mar 15 '15 at 04:54
-
You said unetbootin doesn't work with Bodhi.Can you elaborate on that please ? You couldn't install it from repositories ? Have you tried downloading and installing manually from sourceforge – Sergiy Kolodyazhnyy Mar 15 '15 at 07:31
1 Answers
1
- First download a Ubuntu image (14.04 i386 or your preferred version/architecture)
- Then open the Bodhi terminal and type
sudo fdisk -l
- From this output find your pendrive (by size) and keep in mind its location (i.e.
/dev/sdb
) - Then run this command:
sudo dd if="/PATH/TO/MY/DISK/IMAGE.ISO" of="/dev/sdX" bs=8M
- It will not display nothing until finishes.
When finished, restart computer and boot
Warnings:
- NEVER put
/dev/sda
on thedd
output, it will overwrite your computer's HDD. - Always put the device without the partition number (i.e.
/dev/sdb
and not/dev/sdb1
)
- NEVER put

0x2b3bfa0
- 8,780
- 6
- 36
- 55