Running Multiple Operating Systems

Booting MINIX 3 Directly

MINIX 3 can coexist on a hard disk with Windows or Linux. The hard part is figuring out how to choose which OS to boot. Here are a few hints:

Starting MINIX 3 from MS-DOS or Windows.

Using GRUB to boot MINIX 3

To have GRUB boot MINIX, you can just add the following lines to your GRUB config file (typically /boot/grub/menu.lst):

title Minix
rootnoverify (hdX,Y) # (hdX,Y) is the disk and partition where you install Minix
chainloader +1       # tells GRUB to call Minix's boot loader
boot                 # go, go, go

Here are some examples of GRUB's naming convention for the disks and partitions:

Using a Boot Floppy or the CD-ROM

If you don't want to use a multiboot loader, you can use a MINIX 3 boot floppy or the MINIX 3 CD-ROM to boot MINIX.

Don't forget to change the Boot Order in your BIOS if necessary. You want to boot from the floppy/CD before booting from disk.

Using the MINIX 3 CD-ROM

boot c0d0p0

to boot from the operating system image file on controller 0, drive 0, partition 0. Of course, if you put MINIX 3 on drive 0 partition 1, use:

boot c0d0p1

and so on.

Using a Boot Floppy

If you have a legacy floppy disk drive, you can boot MINIX 3 by inserting your new boot floppy and turning on the power.

MinixWiki: UsersGuide/MultipleOperatingSystems (last edited 2009-06-26 10:29:06 by ArunThomas)