LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Chainloading with LILO | Adding Ubuntu Studio to Slackware & Windows Multiboot (https://www.linuxquestions.org/questions/slackware-14/chainloading-with-lilo-%7C-adding-ubuntu-studio-to-slackware-and-windows-multiboot-934998/)

WhiteyMcQ-Tip 03-17-2012 04:56 PM

Chainloading with LILO | Adding Ubuntu Studio to Slackware & Windows Multiboot
 
So once again I'm having some trouble here..

I've edited lilo.conf as many ways as I can think of and only get syntax errors or no such directory errors.

Slack was on originally, then added 7 for work, now I have Studio installed on its own partition with GRUB
wrote to it.

I'm not sure if I'm adding the wrong things in the wrong sequence or what but every time Studio boots I have no functionality in mouse or keyboard controls.

Alien Bob 03-17-2012 06:00 PM

It always helps if you post actual helpful information that people can comment on.

Eric

WhiteyMcQ-Tip 03-17-2012 07:15 PM

Sorry about that, here is some information

lilo.conf exerpt

////////////////////////////////////////

# Ubuntu Studio Addition
image = /boot/vmlinuz-2.6.38-8-generic
label = U-Studio
loader = /boot/grub
read-only
# Windows bootable partition config begins
other = /dev/sda3
label = Windows
table = /dev/sda
# Windows bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/root
label = Linux

////////////////////////////
fstab exerpt
////////////////////////////

# Ubuntu Studio
/dev/sda5 / ext4 defaults 1 1
/dev/sda6 swap swap defaults 0 0
# Windows below
/dev/sda3 /ntfs ntfs-3g fmask=177,dmask=077 1 0
read-only
# Linux bootable partition config ends

wildwizard 03-17-2012 07:57 PM

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629431)
# Ubuntu Studio Addition
image = /boot/vmlinuz-2.6.38-8-generic
label = U-Studio
loader = /boot/grub
read-only

Firstly image is not used with loader
Secondly to boot a system that has it's own boot loader (either a Linux system with it's own grub/lilo boot sector or Windows) you use this :-

other = /dev/partition-with-boot-sector
label = Whateveryoucallthis
table = /dev/thewholeharddisk

So for your particular setup you would have this :-

Code:

# Ubuntu Studio Addition
other = /dev/sda5
 label = U-Studio
 table = /dev/sda
# Windows bootable partition config begins
other = /dev/sda3
 label = Windows
 table = /dev/sda
# Windows bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
 root = /dev/root
 label = Linux


WhiteyMcQ-Tip 03-17-2012 11:11 PM

Here's a little more information :

Device Boot Start End Blocks Id System
/dev/sda1 2048 1048578047 524288000 83 Linux
/dev/sda2 1048578048 1384122367 167772160 83 Linux
/dev/sda3 1384122368 1698695167 157286400 7 HPFS/NTFS/exFAT
/dev/sda4 1698697214 1953523711 127413249 5 Extended
/dev/sda5 * 1698697216 1936916479 119109632 83 Linux
/dev/sda6 1936918528 1953523711 8302592 82 Linux swap

Thanks for the replies. I changed everything as wildwizard said and now when I update lilo i get "Fatal: Partition entry no found."
Also when lilo boots U-Studio I lose complete control over my mouse and keyboard, same now if I
try to boot the U-Studio install disc. (When I say lose control Num/Cap/ScrLk lights wont even work)
Not sure if drivers are not being loaded, also wondering if an "initrd" entry is necessary in lilo.conf?

Martinus2u 03-18-2012 04:48 AM

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629518)
Thanks for the replies. I changed everything as wildwizard said

looks sane.

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629518)
and now when I update lilo i get "Fatal: Partition entry no found."

that's serious, as if the partition table was broken.

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629518)
Also when lilo boots U-Studio

How is that possible in the light of the fatal error from above?

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629518)
I lose complete control over my mouse and keyboard, same now if I
try to boot the U-Studio install disc. (When I say lose control Num/Cap/ScrLk lights wont even work)

I think you need to sort that issue first.

Quote:

Originally Posted by WhiteyMcQ-Tip (Post 4629518)
Not sure if drivers are not being loaded, also wondering if an "initrd" entry is necessary in lilo.conf?

not for chain loading.

WhiteyMcQ-Tip 03-18-2012 04:12 PM

Could this be due to the fact both partitions are logical? If so how can I make lilo boot U-Studio using the logical root partition?

WhiteyMcQ-Tip 03-19-2012 08:33 AM

U-Studio is booting, or at least making it to the main login screen, there I have no input devices available.
I think it's due to the logical parition, and I've tried to use lilo -b with no luck also.
I receive "Fatal: partition entry not found", when updating lilo, and lilo skips the -b option as well.

slac-in-the-box 03-19-2012 04:07 PM

I had the no text input at login prompt pest before, on my son's asus g73 to be precise... I was able to fix it by setting
Code:

vga=normal
in lilo.conf and rerunning lilo. (but it was finding my partitions, and not reporting errors)... in my lilo.conf, for my slackware image, it looks like
Code:

# Linux bootable partition config begins
image = /boot/vmlinuz
  root = /dev/sda1
  label = slac-in-the-box
  read-only  # Partitions should be mounted read-only for checking
# Linux bootable partition config ends

do you have the "root = /path/to/root/partition" set in your lilo? Oh I see it. Try "root = /dev/sda5" instead of "root = /dev/root" in your lilo.conf.

Also, as far as I know, you don't have to set the bootable flag for the linux root partition; you are setting which partition it boots in lilo with the root = option, and the bootable flag is for windows...

And grub and lilo both do the same thing, so use one or the other, and you don't need any references to grub in your lilo.conf file...

WhiteyMcQ-Tip 03-19-2012 04:20 PM

slac-in-the-box, this is what I have in my lilo.conf

However, I'm still getting the Fatal partition entry not found error.

# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/root
label = Linux
read-only # Partitions should be mounted read-only for checking
# Linux bootable partition config ends
# Linux bootable partition config begins
other = /dev/sda5
label = U-Studio
table = /dev/sda
read-only # Partitions should be mounted read-only for checking
# Linux bootable partition config ends
# Windows bootable partition config begins
other = /dev/sda3
label = Windows
table = /dev/sda
# Windows bootable partition config ends

WhiteyMcQ-Tip 03-19-2012 04:36 PM

When I use "root = /dev/sda5" and update lilo, I now receive a syntax error.

slac-in-the-box 03-19-2012 04:40 PM

according to man page for lilo.conf:

Quote:

ALTERNATE SYSTEM (other=)
Used to load systems other than Linux. The `other = <device>' specifies the boot sector of an
alternate system contained on a device or disk partition
Since Ubuntu is still linux, I don't think you use the "other =" option for it. Save that for booting windows. Try making the Ubuntu image section just like the slackware one, just changing the relevant parts, so in your case it would be

image = /path/to/ububuntu/kernel/in/ubuntu/fs
root = /dev/sda5 # partition for ubuntu fs
label = U-Studio
read-only

I don't know if ubuntu puts there kerenels in /boot the way slackware does, but the "image =" is asking for the path to a linux kernel image... you might also need an initrd to load modules that that image needs at boottime...

slac-in-the-box 03-19-2012 04:46 PM

each linux image gets its own "root =" option. So you only want to use the "root = /dev/sda5" for your U-Studio config... but your slackware root should still be left the way it was, or specify your slackware partition explicitly, as "root=/dev/sd?" (is your slackware on /dev/sda1"?). In addition to paths to partitions, the "root =" option can can also take file system labels, or UUIDs.

slac-in-the-box 03-19-2012 04:58 PM

So when I said Try "root = /dev/sda5" instead of "root = /dev/root" in your lilo.conf" I was wrong :( (well no harm trying)... but what I meant was try adding "root = /dev/sda5" to your U-Studio section. And then I noticed you were using the other=, and suggest that you don't use that for linux kernel. sry to not be more clear at first.

WhiteyMcQ-Tip 03-19-2012 05:02 PM

I understood you completely, I don't understand why my systems acting the way it is, now your method is throwing no errors.
I just have to reboot and try it out, I appreciate your time and help slac. =]

//Now when I boot I get an error reading Unexpected EOF//

Is there any other file I should have to edit other than lilo.conf?
Also as stated before does the logical parition make a difference when using lilo?

WhiteyMcQ-Tip 03-19-2012 05:50 PM

Thank you everyone! It was a combination of a few things, here's what worked:

# Linux bootable partition config begins
image = /media/disk/vmlinuz
label = U-Studio
root = /dev/sda5
read-only # Partitions should be mounted read-only for checking
# Linux bootable partition config ends

Thanks slac-in-the-box!

slac-in-the-box 03-19-2012 06:09 PM

happy you got it working... and that answers your unanswered question: the logical partition was no problem for lilo.


All times are GMT -5. The time now is 08:50 AM.