-1

From my Linux Mint operating system, how do I install/dual-boot this Ubuntu OS which is downloaded as a .iso file?

So that it comes up as an option to boot into when I first turn on my computer. Thanks.

JDS
  • 69
  • 1
  • 7
  • 16

2 Answers2

3

Linux Mint has an application for creating bootable live USBs for installing Linux distros called Startup Disk Creator (usb-creator-gtk).

The USB flash drive that you use with Startup Disk Creator should be 2GB or larger, and for Ubuntu 18.04 and later it should be 4GB or larger. Startup Disk Creator will automatically format your USB flash drive to FAT32 and make it bootable. If you have only one USB flash drive plugged in to your computer, Startup Disk Creator will select it automatically. Be very careful to select the USB flash drive in the Make Startup Disk window in order to avoid overwriting the partition which Mint is installed on, which may make Mint unbootable. In the screenshot below you can see how the USB flash drive Device is identified by its model name, the same model name that appears under the Drive heading after Model: in the Disks (disk utility) application.

enter image description here

karel
  • 13,390
  • 26
  • 45
  • 52
0

I usually go the tried and true method: Burn to a CD and pop in drive, reboot, change the boot order in the BIOS to boot from CD FIRST, reboot a second time and install.

This may be your only option. I know Ubuntu has an app called Wubi that can install from within a OS but its windows specific.

So in your case, crack into a terminal

dd if=/dev/drive of=my_distro.iso bs=2048

or you can get a copy of something like k3b or Brasero and burn through a GUI.

EDIT: Also, verify the checksum of the ISO before you burn. Will save you MANY headaches if you somehow got a bad ISO.

Scandalist
  • 3,051
  • 9
  • 36
  • 41
  • After I run this command and it finishes, I should be able to turn off my computer, turn it back on, and see some sort of Ubuntu boot option? – JDS Jul 18 '13 at 06:11
  • If your BIOS is set to boot from the CD, yes - the installer will begin to load files etc and take you through the installation process. If you have MINT on the system I imagine your BIOS is already configured correctly. If not you will need to verify this and change the order if necessary – Scandalist Jul 18 '13 at 06:13
  • OK great - I'll post how it goes. – JDS Jul 18 '13 at 06:17
  • Dumb question - /dev/drive doesn't exist, I assume `drive` is one of those fill-in-the-blank things I should know? – JDS Jul 18 '13 at 06:22
  • 1
    What is the dd command supposed to do? Kill the iso? – Ярослав Рахматуллин Jul 18 '13 at 19:06
  • dd can't burn images. cdr tools (maybe dvdr+tools or woodim ..whatever it's called these days) has a dd_something binary. They are quite different. – Ярослав Рахматуллин Jul 18 '13 at 19:38
  • Dd works just fine. I've used it to make bootable iso's for a long time. Maybe you got the source and destinations in the command reversed and wiped your iso. It happens. – Scandalist Jul 18 '13 at 21:38
  • dd if=/dev/drive of=my_distro.iso bs=2048. "if" is input file, /dev/drive, which is not exist. "of" is output file, why is it iso? My advice, for newbies, don't use dd aka data destroyer, if You don't know how it works, never copy paste commands like above from Internet, use GUI tool. – NoAngel Apr 27 '18 at 10:59