Linux - NewbieThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
I spent the day installing then reinstalling Gentoo 1.4 x86 20030807
ultimately upon reboot, I found the error message 15 file not found.
I installed the 2.4.20-r3 kernel.
The mobo is an abit be6-ii.
The partition table is /dev/hda1 /boot 250 mb
/dev/hda2 /swap 1000 mb
/dev/hda3 /reiserfs 5000 mb
I followed all of the installation notes to the letter. This machine is linux only, I wanted to avoid any dual booting issues.
Code listing 23.2: GRUB on the MBR
grub> root (hd0,0) (Your boot partition)
grub> setup (hd0) (Where the boot record is installed; here, it is the MBR)
here's the grub.conf:
default 0
timeout 30
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
title=Gentoo Linux (genkernel)
root (hd0,0)
kernel (hd0,0)/boot/kernel-2.4.20-r3 root=/dev/hda3
initrd (hd0,0)/boot/initrd-2.4.20-r3
I used all grp packages. This distro was released about ten days before this posting.
This whole mess seems very familiar since I came across the same problem about four months ago with the april release of gentoo. The grp seemed to help since I could install without downloading new packages. But alas I could not get it to boot.
There's nothing obviously syntatically wrong with that boot code but I'd just check to make sure your kernel version is perfect. Did you use genkernel to build it? I remember the default kernel (gentoo sources) being 2.20.9-r5-gentoo but I'm sure you compiled it differently. That seems like the only thing it could be.
I tried that, it seems that I overlooked it in my previous attempts. Perhaps my kernel install was botched, I pointed the bootloader to the kernel, alas error 15 pops up again. Also the compilation process popped up some errors, and warninig messages. Thanks for holding my hand folks, this is going to take some time.
I'm almost certain that the error is in grub.conf. I had the same problem last time I installed gentoo and fixed it, but I can't remember what I did...
Stupid question. You're sure that's the name of your kernel? If you're following the install directions exactly it would be:
kernel (hd0,0)/boot/bzImage root=/dev/hda3
probably this isn't the case, but...
Ok well you defeinitely need to have the "gaming" in there from now on, but you said it still didn't work like that, right?
Also a revision to my instructions above, I didn't realize that you had an extra boot partition. So just trying mounting /dev/hda1 if you haven't already. Also remember that the way grub sees partition numbers starts indexing at 0, where the /dev method starts indexing at 1.
Here is just a boot block of what your linux part should look like in grub.conf:
title=Gentoo Linux (genkernel)
root (hd0,0)
kernel (hd0,0)/boot/kernel-2.4.20-gaming-r3 root=/dev/hda3
initrd (hd0,0)/boot/initrd-2.4.20-gaming-r3
This block assumes that your have a seperate boot partiton at /dev/hda1, a Probably swap partition at /dev/hda2 and definitely a main partition at /dev/hda3. If this is all correct and you have correctly generated the kernel I really don't see the problem.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.