LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-29-2009, 12:36 PM   #1
themanwhowas
Member
 
Registered: Nov 2005
Distribution: CentOS 5, Fedora 23
Posts: 218

Rep: Reputation: 29
dual boot without chainloader


When dual booting between 2 linux distros i see guides saying that you need to chainload grub from the MBR to the 2nd root partition. Why can't you just add a second entry into the MBR bootloader to boot the 2nd distro directly?

Thanks
 
Old 10-29-2009, 01:32 PM   #2
dracuss
Member
 
Registered: May 2006
Location: Chisinau, Moldova
Distribution: Gentoo, Debian sid
Posts: 151

Rep: Reputation: 29
You can actually use for both OS the same grub. But the problem is that you should install the second without grub and configure grub.conf manually(in the OS that has grub) . I know at least how you can install Debian without grub. But I cannot say anything else about other systems
You see, there are two kinds of people in Linux: the first kind wants everything to run out of the box, and the second kind love to use their brains and set up the OS as they want. IF you are from the first kind, do chainloading. If you are from second, the kernel doesn't care from what version of grub it was loaded

Last edited by dracuss; 10-29-2009 at 01:38 PM.
 
Old 10-29-2009, 01:40 PM   #3
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
it depends on the grub you are using and the distro your trying to boot into. some grubs will not boot a slackware formatted partition, therefore will have to chainload. Since you have Slackware, Slackware grub should boot just about any distro, but not sure about ext4 formated partitons.
 
Old 10-29-2009, 02:06 PM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by colorpurple21859 View Post
it depends on the grub you are using and the distro your trying to boot into. some grubs will not boot a slackware formatted partition, therefore will have to chainload. Since you have Slackware, Slackware grub should boot just about any distro, but not sure about ext4 formated partitons.
That's news!! How many versions of GRUB do you think there are? I'm using 0.97 and it boots Slackware with both eyes closed. In the same vein, what is "Slackware grub"?

"slackware-formatted partition" ?? No clue what that is.....

It is possible that the issue here is that 0.97 will not boot certain filesystems. I'm pretty sure everything here is ext3.

I have never used GRUB 2, so no clues there.
 
Old 10-29-2009, 02:57 PM   #5
Larry Webb
LQ Veteran
 
Registered: Jul 2006
Location: Crystal Beach, Texas
Distribution: Suse for mail +
Posts: 5,100
Blog Entries: 7

Rep: Reputation: 229Reputation: 229Reputation: 229
I believe like pixellany, the only mention I have heard is somewhere I read if you are using an ext3 and one ext4 of course using grub 0.97 and grub 2 that the easiest is to chainload.


Larry
 
Old 10-29-2009, 03:44 PM   #6
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,502

Rep: Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489
Either the guides you are reading are not clear or you are not understanding them. Using Grub, you have the stage1 file (512 bytes) in the master boot record which points to the stage2 file of the system you are using to boot. When you see the boot menu on your screen, you are in the stage2 file of the primary OS - the one you use to boot.

If you have entries in that menu.lst file similar to the one below pointing to a partition with kernel and initrd files, you don't need a boot directory on that partition, it will still boot. Should be obvious because it's pointing to the kernel not a menu.lst file:

Quote:
title Slackware 11.0
root (hd1,6)
kernel /boot/vmlinuz-ide-2.4.33.3 root=/dev/hdb7 ro
#initrd /boot/initrd.img
boot
If you have a configfile entry such as the one below in your primary menu.lst, you will need the menu.lst file at least in that boot directory.

Quote:
title PcLinux-2007 (/dev/sdb8)
root (hd1,7)
configfile /boot/grub/menu.lst
I'm not sure what the difference might be with Grub 2 as I haven't used it yet.

Last edited by yancek; 10-29-2009 at 03:45 PM.
 
Old 10-29-2009, 05:55 PM   #7
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,126

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
Grub (classic) needs to be patched to support ext3 (and ext4) using the 256 byte inode. It's not a Slackware specific issue. A currently installed grub will not handle such a (new) filesystem - and this is the default inode size these days for mkfs for both ext3 and ext4.
 
Old 10-29-2009, 06:57 PM   #8
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,346

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
what syg00 says is what I'm talking about. I came across it when I upgraded to 12.1 slackware and the grub from another distro would not boot it. before ext4 came out slackware was the only distro I was having trouble booting from other distros grub installations.

Last edited by colorpurple21859; 10-29-2009 at 07:01 PM.
 
Old 10-29-2009, 08:48 PM   #9
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
Yes you can use the same grub to boot 2 systems and can take it even a bit further and use the same /boot partition to boot different Linux distributions. Chainload is when you install grub into the partition and not into the MBR.

As for grub not booting some things this is kinda true about ext4. Grub cannot have its files or the kernel ( I think ) on a ext4 partition because currently there is no support "yet". This was the last I have seen regarding grub and ext4 its possible they have a new version out there that does boot it now. The advantage of having both systems share the /boot section is that you only have one place to update the menu.lst file and one place grub has its files. If you opt to not do this remember that the kernel image has to be somewhere grub can access it without needing drivers.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
My FC6 / XP dual boot to FC10 / XP dual boot upgrade plan... is this sane? rylan76 Fedora - Installation 6 02-03-2009 07:31 AM
Dual Booting and Chainloader ErevRav Linux - Newbie 7 10-07-2006 06:34 PM
Installing dual Boot 98/Linux - WONT 'LILO' Dual Boot !? L1nux3d Linux - Laptop and Netbook 15 02-11-2006 05:36 AM
Has the dual boot problem been fixed? (chainloader) Nodscene Linux - Distributions 4 03-13-2005 05:30 PM
Fedora Core 3 Dual Boot, Dual Hard drives, Grub Boot Loader Denali03 Linux - Newbie 1 03-04-2005 01:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:55 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