LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 10-28-2009, 09:04 PM   #1
Mountain
Member
 
Registered: Nov 2007
Location: A place with no mountains
Distribution: Kubuntu, sidux, openSUSE
Posts: 214

Rep: Reputation: 41
What is the best way to multi-boot several Linux distros?


I have a 120 GB hard drive I'm using for experimentation purposes. I want to install about a dozen or so different Linux distros to this drive and be able to boot into any of them. What is the best way to do that?

I'm interested in installing these distros:
sidux
Chakra Fuzzy
Kubuntu Karmic
Mythbuntu Karmic
Mandriva 2010
Crunchbang
openSUSE 11.2
and whatever others I decide to try later.

BTW, I also want to find out how to install these without burning CDs or DVDs. For several of them, I know how to do that, but I don't want to have to use a different USB stick for each distro. I have one 16GB stick that should hold all the ISO files. So it would be nice to use that for the installs.
 
Old 10-28-2009, 09:29 PM   #2
CoderMan
Member
 
Registered: Jan 2009
Location: Gemini Capsule 25164
Distribution: Gentoo
Posts: 375
Blog Entries: 24

Rep: Reputation: 43
Quote:
Originally Posted by Mountain View Post
I have a 120 GB hard drive I'm using for experimentation purposes. I want to install about a dozen or so different Linux distros to this drive and be able to boot into any of them. What is the best way to do that?

I'm interested in installing these distros:
sidux
Chakra Fuzzy
Kubuntu Karmic
Mythbuntu Karmic
Mandriva 2010
Crunchbang
openSUSE 11.2
and whatever others I decide to try later.

BTW, I also want to find out how to install these without burning CDs or DVDs. For several of them, I know how to do that, but I don't want to have to use a different USB stick for each distro. I have one 16GB stick that should hold all the ISO files. So it would be nice to use that for the installs.
Is this just so you can see what they are all like? Why don't you just use VirtualBox? If you aren't familiar with it: VirtualBox allows you to have as many "virtual" disk images as you want, and you run them inside the VirtualBox emulator. You could store the images on your 16GB stick if you didn't want to take up your own PC's hard disk space.
 
Old 10-28-2009, 10:01 PM   #3
Mountain
Member
 
Registered: Nov 2007
Location: A place with no mountains
Distribution: Kubuntu, sidux, openSUSE
Posts: 214

Original Poster
Rep: Reputation: 41
Quote:
Originally Posted by CoderMan View Post
Why don't you just use VirtualBox?
I know about VirtualBox. I don't want to use that approach. It introduces new variables and new issues as well as running slower.

I have the whole 120GB HDD available. No need to save any space on it.
 
Old 10-28-2009, 10:17 PM   #4
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,101
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
Quote:
I also want to find out how to install these without burning CDs or DVD
http://www.instantfundas.com/2007/08...ctly-from.html

Quote:
What is the best way to do that?
http://ubuntuforums.org/showthread.php?t=1300461

Oh and

http://www.justlinux.com/forum/showt...282#post861282

Last edited by rokytnji; 10-28-2009 at 10:18 PM.
 
Old 10-28-2009, 10:28 PM   #5
Mountain
Member
 
Registered: Nov 2007
Location: A place with no mountains
Distribution: Kubuntu, sidux, openSUSE
Posts: 214

Original Poster
Rep: Reputation: 41
Wow! Awesome! Thanks for those great links! I can't wait to try that.

Quote:
Originally Posted by rokytnji View Post
This won't really work in all cases. For example, it won't work with openSUSE 11.2 or with Chakra. I already tried something similar. In fact, this method doesn't work with most of the distros I have tried so far.
 
Old 10-29-2009, 08:36 AM   #6
Mountain
Member
 
Registered: Nov 2007
Location: A place with no mountains
Distribution: Kubuntu, sidux, openSUSE
Posts: 214

Original Poster
Rep: Reputation: 41
I just learned about Grub2. Now I would like to use it. Is there any good guide for multi-booting with Grub2 as the main boot loader? I understand Grub2 will boot OS's that use Grub1 (or any other boot loader) in their partition.

I'm thinking it may be as simple as installing grub 2 to the MBR (using grub-install) then editing grub.cfg like this:

Code:
# Entry N - Chainload another bootloader
menuentry "Chainload my OS" {
    set root=(hd0,N)
    chainloader +1
}
and following the general suggestions given at the above links for grub1. However, if anyone knows of a good guide, I would like to read up on how this is done with Grub2 before I start.
 
Old 11-10-2009, 01:58 PM   #7
adonet
LQ Newbie
 
Registered: Nov 2009
Posts: 3

Rep: Reputation: 0
Quote:
Originally Posted by Mountain View Post
I just learned about Grub2. Now I would like to use it. Is there any good guide for multi-booting with Grub2 as the main boot loader? I understand Grub2 will boot OS's that use Grub1 (or any other boot loader) in their partition.

I'm thinking it may be as simple as installing grub 2 to the MBR (using grub-install) then editing grub.cfg like this:

Code:
# Entry N - Chainload another bootloader
menuentry "Chainload my OS" {
    set root=(hd0,N)
    chainloader +1
}
and following the general suggestions given at the above links for grub1. However, if anyone knows of a good guide, I would like to read up on how this is done with Grub2 before I start.

Although this is right, I run into the problem that after grub2 chainloaded a partition that contains grub legacy. That grub legacy starts, but cannot find its splash screen and cannot boot its operating system (ubuntu 8.04, 8.10 or mint 6 / 7) Even not after editing the grub lines at all. When I chainload this grub legacy containing partition from a mbr with grub legacy in it there's no problem at all.
Chainloading into a windows partition works OK.

My conclusion is that it is possible to chainload from grub legacy into grub 2 and boot succesfully, but not possible to chainload from grub 2 into grub legacy and boot succesfully.

So a dedicated grub 2 partition and grub2 starting from the MBR is not usable as long as one of the partitions containing an operating system uses grub legacy to boot.

Jeroen

A nice guide is found here http://members.iinet.net/~herman546/...l#grub-install

Last edited by adonet; 11-10-2009 at 02:01 PM.
 
Old 11-10-2009, 03:56 PM   #8
Mountain
Member
 
Registered: Nov 2007
Location: A place with no mountains
Distribution: Kubuntu, sidux, openSUSE
Posts: 214

Original Poster
Rep: Reputation: 41
Quote:
Originally Posted by adonet View Post
Although this is right, I run into the problem that after grub2 chainloaded a partition that contains grub legacy. That grub legacy starts, but cannot find its splash screen and cannot boot its operating system (ubuntu 8.04, 8.10 or mint 6 / 7) Even not after editing the grub lines at all. When I chainload this grub legacy containing partition from a mbr with grub legacy in it there's no problem at all.
Chainloading into a windows partition works OK.

My conclusion is that it is possible to chainload from grub legacy into grub 2 and boot succesfully, but not possible to chainload from grub 2 into grub legacy and boot succesfully.

So a dedicated grub 2 partition and grub2 starting from the MBR is not usable as long as one of the partitions containing an operating system uses grub legacy to boot.

Jeroen

A nice guide is found here http://members.iinet.net/~herman546/...l#grub-install
According to what I have been reading, grub and grub2 can boot any operating system via chainloading as long as that operating system has its own boot loader.

Grub2 can boot an OS on a partition containing legacy grub. In fact, I have made this work on my laptop with sidux. I have grub2 installed to the MBR and I have sidux installed to a partition. It works.
 
Old 11-10-2009, 03:58 PM   #9
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
You know
if you install any Ubuntu last, it will, 99% of time
setup the menu.lst to boot everything
Debian is this way too
 
Old 11-10-2009, 04:11 PM   #10
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OH
and another little bug

when ubuntu installs
its menu.lst looks like this

Code:
title		Ubuntu 9.04, kernel 2.6.28-16-generic
uuid		9c85b1c0-8b69-429f-ad40-b3d9c3ddab07
kernel		/boot/vmlinuz-2.6.28-16-generic root=UUID=9c85b1c0-8b69-429f-ad40-b3d9c3ddab07 ro quiet splash --
initrd		/boot/initrd.img-2.6.28-16-generic
quiet
however, if you have many ubuntu's installed
like me
when you boot you'll get splash screens to other ubuntu's and errors
as with adonet

Quote:
That grub legacy starts, but cannot find its splash screen and cannot boot its operating system (ubuntu 8.04, 8.10 or mint 6 / 7)
so, I add the root thing to every menu.lst entry

Code:
title		Ubuntu 9.04, kernel 2.6.28-16-generic
root (hd0,2)
uuid		9c85b1c0-8b69-429f-ad40-b3d9c3ddab07
kernel		/boot/vmlinuz-2.6.28-16-generic root=UUID=9c85b1c0-8b69-429f-ad40-b3d9c3ddab07 ro quiet splash --
initrd		/boot/initrd.img-2.6.28-16-generic
quiet
and then it works good
 
Old 11-11-2009, 04:47 PM   #11
adonet
LQ Newbie
 
Registered: Nov 2009
Posts: 3

Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
OH
and another little bug

when ubuntu installs
its menu.lst looks like this

Code:
title		Ubuntu 9.04, kernel 2.6.28-16-generic
uuid		9c85b1c0-8b69-429f-ad40-b3d9c3ddab07
kernel		/boot/vmlinuz-2.6.28-16-generic root=UUID=9c85b1c0-8b69-429f-ad40-b3d9c3ddab07 ro quiet splash --
initrd		/boot/initrd.img-2.6.28-16-generic
quiet
however, if you have many ubuntu's installed
like me
when you boot you'll get splash screens to other ubuntu's and errors
as with adonet



so, I add the root thing to every menu.lst entry

Code:
title		Ubuntu 9.04, kernel 2.6.28-16-generic
root (hd0,2)
uuid		9c85b1c0-8b69-429f-ad40-b3d9c3ddab07
kernel		/boot/vmlinuz-2.6.28-16-generic root=UUID=9c85b1c0-8b69-429f-ad40-b3d9c3ddab07 ro quiet splash --
initrd		/boot/initrd.img-2.6.28-16-generic
quiet
and then it works good
At my system it doesn't work. Grub2 boots, it chainloads all my partitions with Grub legacy on it and all my partitions with grub2 in it. But the partitions with grub legacy wont boot, but give error 22 no such partition.

When I install grub legacy in the MBR everything works fine.
 
  


Reply

Tags
booting, grub, grub2, install



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Multi-boot XP Pro with several linux distros Rubicon244 Linux - Newbie 2 09-21-2008 11:23 PM
Multi-boot DVD with multiple Distros Predatorian Linux - Software 0 09-15-2008 03:44 PM
Slack and other Distros: Multi Boot Questions c31c Slackware 5 10-22-2004 05:28 AM
Is there a limit to number of distros I can multi boot? glenn69 Linux - Newbie 1 10-12-2004 02:50 PM
best order to install distros in multi-boot yowwww Linux - General 5 05-12-2003 11:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:07 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration