Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Installing Gentoo
  • Search

Someone please help -- install issues

Having problems with the Gentoo Handbook? If you're still working your way through it, or just need some info before you start your install, this is the place. All other questions go elsewhere.
Post Reply
Advanced search
8 posts • Page 1 of 1
Author
Message
trix
n00b
n00b
Posts: 18
Joined: Sun Nov 20, 2005 8:16 am

Someone please help -- install issues

  • Quote

Post by trix » Sun Nov 20, 2005 8:43 am

First off I've read a bazillion threads here and no one seems to be having quite the same problem as me, except perhaps this guy.
Basically, when I get to the point of install where I reboot, GRUB gives me Error 17 then hangs. LILO won't work either, spamming 01 01 01 01 01 about 50 times then hanging.
This is my first attempt at a gentoo install, but not my first linux OS.

Relevent information:
Linux Kernel version 2.6.12-gentoo-r6
I have two hard drives. One 200GB with nothing but my attempted gentoo install, and the other a 6GB functional winxp install for certain games.
the 200G linux hard drive is currently /dev/hda with three partitions
/dev/hda1 (Main ~199GB "/" ReiserFS partition)
/dev/hda2 (Boot ~50MB "/boot" ext2 partition)
/dev/hda3 (Swap ~950MB linux swap partition)
and I have
/dev/hdd1 (Main 6GB Windows XP NTFS partition)

my grub.conf looks similar to this:

Code: Select all

default 0
timeout 10
splashimage=(hd0,1)/grub/splash.xpm.gz

title=Gentoo Linux
root (hd0,1)
kernel=/kernel-2.6.12-gentoo-r6 root=/dev/hda1

title=Winblows XP
rootnoverify (hd1,0)
makeactive
chainloader +1
Now, under the winxp part I first had "rootnoverify (hd3,0)" since the D in hdD is the fourth letter and whatever but running grub-install (and even in the relevent device map file) the hdd drive is detected and listed as (hd1). But in either setup I still get the Error 17.

In case you want to see my fstab it looks like this:

Code: Select all

/dev/hda2      /boot        ext2       defaults,noatime       1 2
/dev/hda1      /            reiserfs   notail,noatime         0 1
/dev/hda3      none         swap       sw                     0 0

none           /proc        proc       defaults               0 0
none           /dev/shm     tmpfs      nodev,nosuid,noexec    0 0

/dev/cdroms/cdrom0  /mnt/cdrom  auto   noauto,user            0 0
I also have reiserfsprogs and the relevent settings in the kernel menuconfig set, and I can mount the reiserfs partition fine from LiveCD.

I am at a complete loss as to what the problem could be.

If it matters I'm running an old E-Machines with a Celeron 500MHz and 256M of pc100 SDRAM. (my old much better comp got rained on, long story)

Any other info you need let me know, and help would be a godsend. I've tried everything I can think of and I gotta get this shit working. I really want to try this distro as it's come highly recommended by some geek friends of mine.

Thanks in advance,
- trix
Top
trix
n00b
n00b
Posts: 18
Joined: Sun Nov 20, 2005 8:16 am

  • Quote

Post by trix » Sun Nov 20, 2005 8:50 am

oh, and if it matters, i've tried reinstalling grub several times. then I uninstalled grub and tried lilo, when I got the 01 01 01 01 01 spamming I tried all I could think of, when nothing changed I removed lilo and went back to grub, recompiling it and everything, and same problem...
Top
syg00
l33t
l33t
Posts: 907
Joined: Mon Aug 23, 2004 5:30 am
Location: Brisbane, AUS

  • Quote

Post by syg00 » Sun Nov 20, 2005 9:17 am

Erk - I wonder if you have a BIOS too old.
I always like to allocate the boot partition first on the disk - this makes sure you avoid any "1024 Cylinder" or "137Gig" issues with the BIOS.

Can't offer anything better - hopefully someone else can.
Top
nixnut
Bodhisattva
Bodhisattva
User avatar
Posts: 10974
Joined: Fri Apr 09, 2004 1:43 pm
Location: the dutch mountains

  • Quote

Post by nixnut » Sun Nov 20, 2005 12:01 pm

Could be that your 6GB harddisk is seen as the first disk by grub. Can you change the order in the bios? If not check master/slave settings or switch them around from primary to secondary controller and vice versa.
Please add [solved] to the initial post's subject line if you feel your problem is resolved. Help answer the unanswered

talk is cheap. supply exceeds demand
Top
superk
n00b
n00b
User avatar
Posts: 36
Joined: Fri Jun 06, 2003 4:12 pm

  • Quote

Post by superk » Sun Nov 20, 2005 10:54 pm

this may help a little, as far as the windows part goes

Code: Select all

title=WINXP
map (hd0) (hd1)
map (hd1) (hd0)
chainloader (hd1,0)+1
windows needs to be seen as the first harddrive
EDIT, i read again about the windows drive... its on the secondary controller as slave?
then replace (hd1) with (hd3) .... never tried that but it should work *shrug*

and
kernel=/kernel-2.6.12-gentoo-r6 root=/dev/hda1
typo?

Code: Select all

kernel /kernel-2.6.12-gentoo-r6 root=/dev/hda1 
hope that helps

also, from that other thread
bobulus,

Error 17 means grub cannot read your /boot partition. You really don't need reiserfs, or indeed, any journalled filesystem here. Having /boot past cylinder 1024 is only an issue for old motherboards, which cannot handle drives bigger than 8Gb anyway. Thats not your problem.
i know it would be painful, but if nothing else works, put boot first

which, it does recommend in the manual ;)
Top
cyrillic
Watchman
Watchman
User avatar
Posts: 7311
Joined: Wed Feb 19, 2003 3:05 am
Location: Groton, Massachusetts USA

  • Quote

Post by cyrillic » Mon Nov 21, 2005 12:28 am

My advice would be to unplug your Windows harddrive for now. Configuring GRUB is a lot less confusing when you only have 1 harddrive to deal with.

Once you have Gentoo setup so it can boot properly alone, then try plugging the Windows harddrive back in, and add a Windows section to your grub.conf (use what superk posted above).
Top
yinrunning
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 114
Joined: Sun Nov 13, 2005 6:21 pm
Location: KC,MO,USA

  • Quote

Post by yinrunning » Mon Nov 21, 2005 1:26 am

Is the boot sequence at least getting to the grub splash, or is it crapping out before then?
Top
trix
n00b
n00b
Posts: 18
Joined: Sun Nov 20, 2005 8:16 am

  • Quote

Post by trix » Fri Nov 25, 2005 6:59 pm

fixed the problem.

my computer is too old and needed the /boot partition first.
so I changed it and started from square 1 and did it all over and it now works.

Thanks for the help!

- trix
Top
Post Reply

8 posts • Page 1 of 1

Return to “Installing Gentoo”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic