LinuxQuestions.org
Review your favorite Linux distribution.
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 11-21-2004, 09:34 PM   #1
gargolek
LQ Newbie
 
Registered: Nov 2004
Location: NY
Distribution: RedHat 9
Posts: 5

Rep: Reputation: 0
kernel upgrade to 2.6.9


hello
i am totally new to linux and i leraning it in my class. On the finall project i got to do the upgrade kernel from 2.6.5-something for everything higher. I found the higest kerenl right now is 2.6.9 also i foun information how to do it on the "digitalhermit.com/linux/Kernel-Build-HOWTO.html by Kwan Lowe" .
I did everything what was writen there step by step and everything seems went ok. However when i choose from Grub my new kernel i got this message on the terminal
"
Booting Fedora Core (2.6.9)
root (hd0,0)
Filesystem type is ext2fs, partition type 0x83
kernel /boot/bzImage-2.6.9 ro root=LABLE=/1 rhgb quiet
Error 15: File not found

I want to add that i use Fedora Core 2
Thx for replay
 
Old 11-21-2004, 10:05 PM   #2
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,465

Rep: Reputation: 299Reputation: 299Reputation: 299
Just use Yum or Apt.

PS: Don't use Fedora.us, Livna.org and Fedora Extras for updating.
Their repositories are not compatible with all the other ones.

Start with DAG:
http://dag.wieers.com/home-made/apt/FAQ.php
 
Old 11-21-2004, 10:12 PM   #3
Linux~Powered
Member
 
Registered: Jan 2004
Location: /lost+found
Distribution: Slackware 14.2
Posts: 849

Rep: Reputation: 33
I don't use grub so i'm not sure on this, but with lilo, after you edit the config file you have to /sbin/lilo as root. Now, i'm not sure if you'll have to do this with grub or not.

Can you post your grub config file and your /boot?

Last edited by Linux~Powered; 11-21-2004 at 10:15 PM.
 
Old 11-21-2004, 11:20 PM   #4
gargolek
LQ Newbie
 
Registered: Nov 2004
Location: NY
Distribution: RedHat 9
Posts: 5

Original Poster
Rep: Reputation: 0
this is my grub :
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/hda6
# initrd /initrd-version.img
#boot=/dev/hda
default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
title Fedora Core (2.6.5-1.358)
root (hd0,0)
kernel /vmlinuz-2.6.5-1.358 ro root=LABEL=/1 rhgb quiet
initrd /initrd-2.6.5-1.358.img
title Fedora Core (2.6.9)
root (hd0,0)
kernel /boot/bzImage ro root=LABLE=/1 rhgb quiet
initrd /boot/initrd-2.6.9.img


and this is my /boot:
. grub System.map-2.6.5-1.358
.. initrd-2.6.5-1.358.img System.map-2.6.9
bzImage-2.6.9 initrd-2.6.9.img vmlinuz-2.6.5-1.358
config-2.6.5-1.358 lost+found vmlinuz-2.6.9
.config-2.6.9 System.map

thx again for everything and i will try this Yum and Apt
 
Old 11-21-2004, 11:28 PM   #5
Linux~Powered
Member
 
Registered: Jan 2004
Location: /lost+found
Distribution: Slackware 14.2
Posts: 849

Rep: Reputation: 33
Try this in your grub config...

title Fedora Core (2.6.9)
root (hd0,0)
kernel /boot/bzImage-2.6.9 ro root=LABEL=/1 rhgb quiet
initrd /boot/initrd-2.6.9.img

I'm not sure, but for one you misspelled Label, second you just had /boot/bzImage and not /boot/bzImage-2.6.9 so the boot loader isn't going to find it.
 
Old 11-21-2004, 11:30 PM   #6
gargolek
LQ Newbie
 
Registered: Nov 2004
Location: NY
Distribution: RedHat 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by jens
Just use Yum or Apt.

PS: Don't use Fedora.us, Livna.org and Fedora Extras for updating.
Their repositories are not compatible with all the other ones.

Start with DAG:
http://dag.wieers.com/home-made/apt/FAQ.php

i just check this webste however it looks for me that they do automatic update and my teacher want everything done by me no automatic updates!! i think it is if i am wrong please give me explanation how to use it thx
 
Old 11-21-2004, 11:43 PM   #7
gargolek
LQ Newbie
 
Registered: Nov 2004
Location: NY
Distribution: RedHat 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Linux~Powered
Try this in your grub config...

title Fedora Core (2.6.9)
root (hd0,0)
kernel /boot/bzImage-2.6.9 ro root=LABEL=/1 rhgb quiet
initrd /boot/initrd-2.6.9.img

I'm not sure, but for one you misspelled Label, second you just had /boot/bzImage and not /boot/bzImage-2.6.9 so the boot loader isn't going to find it.
i just change my grub file and i restart my box but nothing change i still got the same error

thx
 
Old 11-22-2004, 12:09 AM   #8
Linux~Powered
Member
 
Registered: Jan 2004
Location: /lost+found
Distribution: Slackware 14.2
Posts: 849

Rep: Reputation: 33
I hate to do this by trial and error, but try this and i'll explain why..

title Fedora Core (2.6.9)
root (hd0,0)
kernel /bzImage-2.6.9 ro root=LABEL=/1 rhgb quiet
initrd /initrd-2.6.9.img


The boot loader looks in the /boot directory for the kernel image, so when you specify /boot/bzImage it's looking for the dir boot inside of /boot. I could be wrong but that's my guess.
 
Old 11-22-2004, 12:21 AM   #9
gargolek
LQ Newbie
 
Registered: Nov 2004
Location: NY
Distribution: RedHat 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Linux~Powered
I hate to do this by trial and error, but try this and i'll explain why..

title Fedora Core (2.6.9)
root (hd0,0)
kernel /bzImage-2.6.9 ro root=LABEL=/1 rhgb quiet
initrd /initrd-2.6.9.img


The boot loader looks in the /boot directory for the kernel image, so when you specify /boot/bzImage it's looking for the dir boot inside of /boot. I could be wrong but that's my guess.

Iam sorry for all your trouble but it works just fine and iam so excited becouse i did something new i am very very apprciate for what you done for me tkank tou for all your time it took you to replay me thx again i hope i will remember how i did it becouse i have to show my teacher in class how i done it thx again you do not now how happy i am
thx everyone special thx for Linux~Powered

p.s now i can go to sleep good night every one
 
  


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
Kernel Audit Support Unavaible error when booting after kernel upgrade abefroman Red Hat 2 03-21-2013 08:32 AM
Kernel Upgrade now Kernel Panic saltireboy Slackware 9 01-23-2006 11:44 PM
kernel panic after kernel upgrade flebber Debian 8 04-08-2005 07:26 AM
What first upgrade kernel or upgrade slack 10.0 to current Kelean Slackware 7 01-16-2005 06:54 PM
Kernel upgrade: Unable to handle kernel paging request deviantintegral Debian 4 07-14-2004 04:59 PM

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

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