LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 12-20-2010, 04:36 PM   #1
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Rep: Reputation: 19
Arrow Just installed openSuSE, but no grub offered. Where are my other OS's???


Pretty self-explanitory:

I installed openSuSE 11.3. Now, I don't get a grub screen when I boot up, my machine just boots openSuSE..

How do I get my grub back, and keep all the other OS's in tact?

(Kubuntu, Ubuntu, Salix, Sabayon, are all waiting there somewhere....)
 
Old 12-20-2010, 04:39 PM   #2
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Which version of grub are you using? and in which Linuxinstallation is/was it configured?

Markus

Last edited by markush; 12-20-2010 at 04:40 PM.
 
1 members found this post helpful.
Old 12-20-2010, 04:41 PM   #3
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
It's grub2. ?0.92 or 1.92 or something...?
 
Old 12-20-2010, 04:44 PM   #4
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
I first made grub with Kubuntu, on /dev/sda1. On all installations I have grub written to /dev/sda, but with this installation I do not recall an option presented for grub... I wonder if it even matters...
 
Old 12-20-2010, 04:45 PM   #5
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Well, if it's the old version of Grub(0.9?) you can chroot into the distribution where Grub is installed and run the "grub-install" command again, be sure to insert the new Suse to the menu.lst.

Markus
 
1 members found this post helpful.
Old 12-20-2010, 04:47 PM   #6
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
The new version of Grub (2.?) doesn't have a menu.lst file, everything works automatically.
I've used it without success and had to overwrite the bootsector in order to get my system boot again.
 
1 members found this post helpful.
Old 12-20-2010, 04:47 PM   #7
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Sorry, but Im lost.

My grub is grub2, whether that version number above is correct or not.

I dont understand chroot...
 
Old 12-20-2010, 04:50 PM   #8
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Actually you'll need Grub only on one distribution and let it write on /dev/sda. There is however one limitation, if you have 64bit and 32bit systems on one and the same computer, you cannot boot 32bit systems with Grub from a 64bit system and vice versa.

Markus
 
1 members found this post helpful.
Old 12-20-2010, 04:53 PM   #9
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Also, within my file manager, I can access all the other partitions, except 1. I can not access (it does not see) /dev/sda3, which is a media storage partition, formatted in FAT32, so I can use the HDD in other machines with that big proprietary "broken-window" OS.

That drive would be nice to have back. I recall mount-options during openSuSE's installation, and by default /dev/sda3 (FAT32) was set for mount point: /win, or something like that. I probably didn't need to put a mount point there.

After a year with Linux, I'm still just a noob...
 
Old 12-20-2010, 04:54 PM   #10
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Well, I'll help you. In order to chroot from Suse to Kubuntu, you'll have to mount the / partition of Kubuntu anywhere in the filesystem, for example /mnt/kubuntu
Code:
mount /dev/sda? /mnt/kubuntu
if you have a separate /boot partition with Kubuntu, you may mount that as well. Then
Code:
mount -t proc none /mnt/kubuntu/proc
mount -o bind /dev /mnt/kubuntu/dev
chroot /mnt/kubuntu /bin/bash
that's it. Now you are in your Kubuntusystem, here you can edit /boot/grub/menu.lst and execute the "grub-install" command.

Markus
 
1 members found this post helpful.
Old 12-20-2010, 04:57 PM   #11
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
I make sure that I DL 64-bit .ISOs ONLY. I just checked all my ISO discs, and all are labeled as 64-bit.

Is there any use for Super Grub2? I have that ISO on a disc.
 
Old 12-20-2010, 04:58 PM   #12
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Just to clarify, I only set mount-points for my distros as:
Quote:
/
 
Old 12-20-2010, 05:01 PM   #13
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Root terminal:

Quote:
honeybear@linux:~> su -
Password:
linux:~ # mount /dev/sda1 /mnt/kubuntu
mount: mount point /mnt/kubuntu does not exist
Now what?!
 
Old 12-20-2010, 05:01 PM   #14
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
mh, I don't know what you mean, but in order to access one distribution from within another, you'll have to mount it anywhere in the filesystem, so you should create any empty directory, for example /mnt/kubuntu

Markus
 
1 members found this post helpful.
Old 12-20-2010, 05:02 PM   #15
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
well
Code:
sudo mkdir /mnt/kubuntu
Markus
 
1 members found this post helpful.
  


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
Choices Offered for Partitioning - No Swap Offered? cbl48 Ubuntu 1 04-03-2010 06:41 PM
[GRUB] can't find other OS's hattrick Linux - Newbie 8 11-05-2008 11:05 PM
2HDDs, 2 OS's (Grub Q) phantom_cyph Linux - Software 2 05-14-2007 10:18 PM
So exactly how many os's can Grub handle? mebrelith Fedora 2 03-16-2005 04:37 PM
2 harddrives, 2 os's, 1 grub? arg!! nickwu2000 Linux - Newbie 1 03-31-2003 11:23 AM

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

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