LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linspire/Freespire
User Name
Password
Linspire/Freespire This Forum is for the discussion of Linspire and Freespire.

Notices


Reply
  Search this Thread
Old 05-20-2006, 08:56 AM   #1
Ray2047
Member
 
Registered: Dec 2005
Posts: 52

Rep: Reputation: 15
Boot Menu Help Needed


I installed Linspire 5.0 but it failed to add Debian/Sarge on my second Hard Drive to the boot menu.

A search gave me instructions for finding and editing the boot menu but they don't seem to work on my install. The instructions I found said to go to the file manager, click System, click Boot, right click grub and choose "open with". Well I'm not finding Grub.

Second question I have is what specifically do I need to add to get Debian/Sarge on the menu.

Thanks in advance

Last edited by Ray2047; 05-20-2006 at 08:57 AM.
 
Old 05-20-2006, 03:27 PM   #2
davcefai
Member
 
Registered: Dec 2004
Location: Malta
Distribution: Debian Sid
Posts: 866

Rep: Reputation: 45
You may be using lilo. Look for the file /etc/lilo.conf. If you have it then edit it as per "man lilo.conf"
 
Old 05-20-2006, 09:56 PM   #3
Ray2047
Member
 
Registered: Dec 2005
Posts: 52

Original Poster
Rep: Reputation: 15
Thanks. Took a bit of looking but found it. I'd looked a bit for LILO when I couldn't find Grub but just didn't see it. Now I just have to find the correct format for the Debian entry. I'll post over at Debian for that.

Quote:
then edit it as per "man lilo.conf"
Ok, you lost me on that. Could you please explain "man".

Last edited by Ray2047; 05-20-2006 at 09:59 PM.
 
Old 05-21-2006, 12:10 AM   #4
davcefai
Member
 
Registered: Dec 2004
Location: Malta
Distribution: Debian Sid
Posts: 866

Rep: Reputation: 45
Sorry, maybe I went too fast.

man is the command to see manual pages. So you type:

man lilo.conf

to read all about modifying lilo.conf.

Better still, install dwww which gives you a web browser interface to indexed documentation.

Something like this will do the trick for you:

Code:
## Mandriva 2006
image=/mnt/mdk2006/boot/vmlinuz
    label="Mandriva2006"
    root=/dev/sdb5
    initrd=/mnt/mdk2006/boot/initrd.img
    append=" resume=/dev/sda9 splash=silent"
    vga=788
In the above, I am booting Mandriva on the second hdd from the boot menu on the first. Note that:

The mandriva root has been mounted on /mnt/mdk2006. You need to do this for lilo to find the files.

In your case Debian will probably be on hdb1.

If you can boot Debian by selecting the boot drive you can look at its lilo.conf and copy the releveant parameters. Otherwise mount the disc and look at its lilo.conf that way.

Hope this helps.
 
Old 05-21-2006, 06:33 AM   #5
Ray2047
Member
 
Registered: Dec 2005
Posts: 52

Original Poster
Rep: Reputation: 15
Thank you for your helpful answer. Unfortunately what was my boot drive is the one I installed Linspire on so I can't check that because it was erased. Guess I'm screwed because when I tried to get help for the Debian part of this post in the Debian forum the moderators locked the post.

Moderators do you see any direct help on the Debian side of the issue. I don't so why block me getting help in the appropriate forum?

Guess I'm going to be blocked here to but I need to vent about my treatment by what up to now I thought was a good place to post.
 
Old 05-21-2006, 10:40 AM   #6
davcefai
Member
 
Registered: Dec 2004
Location: Malta
Distribution: Debian Sid
Posts: 866

Rep: Reputation: 45
Quote:
Guess I'm going to be blocked here to but I need to vent about my treatment by what up to now I thought was a good place to post.
Did you double-post? That's a no-no here.

Let's take this stepwise. It's really rather easy as long as you have the requisite knowledge.

Do you know how to mount the second hard disc?

Edit /etc/fstab and add the following lines:

Code:
# Debian
/dev/hdb1     /mnt/debian    ext3    defaults    1    1
I'm assuming that you formatted as ext3 (default). If not the ext3 above needs to be changed.

Save, exit. Now create a subdirectory in /mnt named debian. I've never used Linspire but it probably has an /mnt directory. If not, create it first.

Now become root and issue

mount -a

If there's an error, report it. If all is OK you will simply be returned to the command prompt.

Now if you fire up your file manager you should see your Debian Disc under /mnt/debian. You need to be root for this to work.

Next time you boot the 2nd hard disc will be mounted automatically.

Please come back with the results of this and we'll take it to the next stage. Incidentally nothing of this is Debian specific, All distros work this way.
 
Old 05-21-2006, 05:50 PM   #7
Ray2047
Member
 
Registered: Dec 2005
Posts: 52

Original Poster
Rep: Reputation: 15
Sorry for the vent earlier but I don't consider what I posted a duplicate post. I didn't ask about finding the boot manager in Linspire.

I think the whole thing has gone a bit off course. I was only asking how to add Debian to the boot menu. I thank you for letting me know how to mount it but all I really wanted to do was to add it to Linspire boot menu. That question was answered here. That's why I went to Debian to find out the specific structure of what I needed to add to LILO to have it boot from Linspire's menu.

Edit: Thanks to a poster on another forum I now understand that i must mount my Debian drive to get info for Ilio. I also now understand there are not distro specific entries which was why my post in Debian was considered a double post.

Last edited by Ray2047; 05-24-2006 at 05:04 PM.
 
Old 09-15-2006, 08:55 AM   #8
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
well now might be a good time to acquire a live cd such as knoppix or kanotix or a small download of RIP.

boot the live cd

open a terminal and mount the relevant partition to a folder then access it I assume you will be using knoppix as RIP differs due to GUI

eg
su
mkdir /new
mount -t ext3 /dev/X (X needs more info) /new
konqueror

then navigate to /new to read your files

I must be drunk but I can not see where you have mentioned your drive (s) and their partitions

(2) can you be kind to a dinosaur and tell us what they are again pls?
I am not confident its hdb1

(3) after going to the correct partition you can edit it if its mounted as read-write......the above command does this by NOT defining the mount command with a read only (ro) parameter.
 
Old 09-15-2006, 08:59 AM   #9
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
let me know if you have downloaded RIP and I will give you more info....boot it once and choose the X (for X windows ) with NO keymap prompt if you have a std keyboard.
tell me what is the first menu item you see when you right hand click an empty space on the screen.....this confirms to me....you have a good burn etc



http://distrowatch.com/table.php?distribution=rip

Last edited by aus9; 09-15-2006 at 09:05 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
How to set the default boot operating system at the boot menu Niceman2005 Linux - General 2 04-12-2006 09:46 PM
Fresh Install Of Distr From Network - Boot Menu, Need to pull up a menu of OS dist to SupermanInNY Linux - Distributions 0 01-22-2006 11:48 AM
Dual Boot : Making Windows First Option in boot menu Maxwell Rain Linux - Software 3 11-27-2004 03:00 PM
grub help needed cmd/menu mode boot prob/setup vlinux Linux - Software 3 11-13-2004 12:34 PM
Grub boot loader menu shows two linux boot options pramos Linux - Newbie 3 09-12-2004 11:40 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linspire/Freespire

All times are GMT -5. The time now is 11:12 AM.

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