[tslug] Re: help--first time upgrading my kernel

2003-10-27 Thread Donald J Bindner
On Mon, Oct 27, 2003 at 06:54:40AM -0800, Dana Schoonover wrote:
 I already ran lilo -v before I did the reboot, and
 it still seems to be running the old version of the
 kernel.  Is there anything else I can do?  

Hit the left shift when it boots to get a menu.  In your
lilo.conf you specified default=linux which is your original
configuration.  If you allow it to auto-boot that will be what
runs.

   the contents of lilo.conf are:
   
   prompt
   timeout=100
   default=linux
   lba32
   boot=/dev/hda
   compact
   image=/boot/vmlinuz-2.4.22
   append = ro root=LABEL=/
   initrd = /boot/initrd-2.4.22.img
   label = 2.4.22
   image=/boot/vmlinuz-2.4.20-8
   append = ro root=LABEL=/
   initrd = /boot/initrd-2.4.20-8.img
   label = linux
   other=/dev/hda1
   label = Windows_2000
   table = /dev/hda
   lilo.conf (END)

-- 
Don Bindner [EMAIL PROTECTED]

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Jordan Morren
There's a nice little kernel compilation mini-howto that might be of 
some help over at linuxquestions.org here:

http://www.linuxquestions.org/questions/showthread.php?s=threadid=91503

That one's more geared toward Red Hat, but there's also a good little 
guide in the Slackware forum:

http://www.linuxquestions.org/questions/showthread.php?s=threadid=49035


~Jordan



Dana Schoonover wrote:

Hello All, 

I am upgrading my kernel for the first time.. and I'm
kind of not sure what step comes next..  Any help
would be greatly appreciated :-)  

What I've done so far:  

*backed up all my config files in
/usr/src/kernelconfigs
*got the 2.4.22 src files and unpacked them into
/usr/src/linux-2.4.22
*made symbolic link linux-2.4 point to linux-2.4.22
instead of linux-2.4.20-8 (I have also a symbolic link
linux pointing to linux-2.4)
*did a make clean, make mrproper, make clean, then
recopied the .config file (I guess I was supposed to
do that?)

So yeah..  If anyone can help, I would be greatly
indebted to you :-)  You can email, or call (785-7329)
if you have a few minutes and can talk to me about
it-- I'm a bit confused as far as what the howto I'm
looking at is telling me to do
(http://www.linux.org/docs/ldp/howto/Kernel-HOWTO/quick_steps.html#upgra
ding).
 

Thanks :-) 

Dana

=
God is bigger than the boogey-man.  
   --Jr. Asparagus

__
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Donald J Bindner
On Sun, Oct 26, 2003 at 04:29:47PM -0600, Benjamin Story wrote:
 Now you need to 
 make dep  make bzImage  make modules  make modules_install
 
 When that is done
 cp arch/i386/bzImage to /boot/vmlinuz-2.4.22
 mkinitrd initrd-2.4.22.img 2.4.22
 Configure your bootloader.

Actually, I think 'make oldconfig' would be appropriate before
the make dep step.

Don

-- 
Don Bindner [EMAIL PROTECTED]

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Benjamin Story
True, I usually do make menuconfig so I forgot that step.


On Sun, Oct 26, 2003 at 04:48:32PM -0600, Donald J Bindner wrote:
 On Sun, Oct 26, 2003 at 04:29:47PM -0600, Benjamin Story wrote:
  Now you need to 
  make dep  make bzImage  make modules  make modules_install
  
  When that is done
  cp arch/i386/bzImage to /boot/vmlinuz-2.4.22
  mkinitrd initrd-2.4.22.img 2.4.22
  Configure your bootloader.
 
 Actually, I think 'make oldconfig' would be appropriate before
 the make dep step.
 
 Don
 
 -- 
 Don Bindner [EMAIL PROTECTED]
 
 -
 To get off this list, send email to [EMAIL PROTECTED]
 with Subject: unsubscribe
 -
 

-- 
--
Benjamin Story
 
() Join the ASCII ribbon campaign against HTML email and Microsoft-specific
/\ attachments. If I wanted to read HTML, I would have visited your website!
Support open standards.

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Sean M. Foy
uname -a

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Dana Schoonover
Sent: Sunday, October 26, 2003 6:08 PM
To: [EMAIL PROTECTED]
Subject: [tslug] Re: help--first time upgrading my kernel


okay  I think I've got it done :-)  

I rebooted and everything seemed to work okay.. :-) 
Is there anything I can do to make sure that it really
is running the new kernel?   

Thanks for all the help :-) 

Dana

=
God is bigger than the boogey-man.  
       --Jr. Asparagus

__
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/

-
To get off this list, send email to [EMAIL PROTECTED] with
Subject: unsubscribe
-


-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Benjamin Story
Now you need to 
make dep  make bzImage  make modules  make modules_install

When that is done
cp arch/i386/bzImage to /boot/vmlinuz-2.4.22
mkinitrd initrd-2.4.22.img 2.4.22
Configure your bootloader.

This is running from memory so I'd check www.ldp.org for the kernel
howto.

On Sun, Oct 26, 2003 at 02:13:43PM -0800, Dana Schoonover wrote:
 Hello All, 
 
 I am upgrading my kernel for the first time.. and I'm
 kind of not sure what step comes next..  Any help
 would be greatly appreciated :-)  
 
 What I've done so far:  
 
 *backed up all my config files in
 /usr/src/kernelconfigs
 *got the 2.4.22 src files and unpacked them into
 /usr/src/linux-2.4.22
 *made symbolic link linux-2.4 point to linux-2.4.22
 instead of linux-2.4.20-8 (I have also a symbolic link
 linux pointing to linux-2.4)
 *did a make clean, make mrproper, make clean, then
 recopied the .config file (I guess I was supposed to
 do that?)
 
 So yeah..  If anyone can help, I would be greatly
 indebted to you :-)  You can email, or call (785-7329)
 if you have a few minutes and can talk to me about
 it-- I'm a bit confused as far as what the howto I'm
 looking at is telling me to do
 (http://www.linux.org/docs/ldp/howto/Kernel-HOWTO/quick_steps.html#upgrading).
  
 
 Thanks :-) 
 
 Dana
 
 =
 God is bigger than the boogey-man.  
  ? ? ? --Jr. Asparagus
 
 __
 Do you Yahoo!?
 Exclusive Video Premiere - Britney Spears
 http://launch.yahoo.com/promos/britneyspears/
 
 -
 To get off this list, send email to [EMAIL PROTECTED]
 with Subject: unsubscribe
 -
 

-- 
--
Benjamin Story
 
() Join the ASCII ribbon campaign against HTML email and Microsoft-specific
/\ attachments. If I wanted to read HTML, I would have visited your website!
Support open standards.

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Ian Monroe
The problem lies somewhere with your boot loader not booting the kernel you 
want it to. Could you tell us something about it? Is it grub or lilo? The 
contents of your /etc/lilo.conf or /boot/grub/grub.conf (or 
/boot/grub/menu.lst)?

On Sunday 26 October 2003 18:36, Dana Schoonover wrote:
 [EMAIL PROTECTED] r0b0tg1rl]$ uname -a
 Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13
 17:54:28 EST 2003 i686 athlon i386 GNU/Linux



 Does that mean I didn't really update my kernel?  (If
 yes, I really need help.. *laugh*)

 (I was trying to go from 2.4.20-8 to 2.4.22, btw)

 =
 God is bigger than the boogey-man.
--Jr. Asparagus


-- 
Ian Monroe
http://www.monroe.nu

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Caleb Jorden
I have worked on her system before, it is GRUB.  RH has the sym links
for both grub config files, so either one should work.

Caleb.

On Sun, 2003-10-26 at 20:05, Ian Monroe wrote:
 The problem lies somewhere with your boot loader not booting the kernel you 
 want it to. Could you tell us something about it? Is it grub or lilo? The 
 contents of your /etc/lilo.conf or /boot/grub/grub.conf (or 
 /boot/grub/menu.lst)?
 
 On Sunday 26 October 2003 18:36, Dana Schoonover wrote:
  [EMAIL PROTECTED] r0b0tg1rl]$ uname -a
  Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13
  17:54:28 EST 2003 i686 athlon i386 GNU/Linux
 
 
 
  Does that mean I didn't really update my kernel?  (If
  yes, I really need help.. *laugh*)
 
  (I was trying to go from 2.4.20-8 to 2.4.22, btw)
 
  =
  God is bigger than the boogey-man.
 --Jr. Asparagus
 


-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Dana Schoonover
the contents of lilo.conf are:

prompt
timeout=100
default=linux
lba32
boot=/dev/hda
compact
image=/boot/vmlinuz-2.4.22
append = ro root=LABEL=/
initrd = /boot/initrd-2.4.22.img
label = 2.4.22
image=/boot/vmlinuz-2.4.20-8
append = ro root=LABEL=/
initrd = /boot/initrd-2.4.20-8.img
label = linux
other=/dev/hda1
label = Windows_2000
table = /dev/hda
lilo.conf (END)


the contents of grub.conf are: 

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making
changes to this file
# NOTICE:  You do not have a /boot partition.  This
means that
#  all kernel and initrd paths are relative to
/, eg.
#  root (hd0,1)
#  kernel /boot/vmlinuz-version ro
root=/dev/hde2
#  initrd /boot/initrd-version.img
#boot=/dev/hde
default=1
timeout=10
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.22)
root (hd0,1)
kernel /boot/vmlinuz-2.4.22 ro root=LABEL=/
hdg=ide-scsi
initrd /boot/initrd-2.4.22.img
title Red Hat Linux (2.4.20-8)
root (hd0,1)
kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/
hdg=ide-scsi
initrd /boot/initrd-2.4.20-8.img
title Windows2000
rootnoverify (hd0,0)
chainloader +1
grub.conf (END)



I think I'm using Lilo now because something or other
was weird with grub when I switched over to my new
hardware...  but in either case, here are the files. 
I don't know what they're supposed to look like.. but
they both have 2.4.22 stuff in them, so...  I don't
know.  If anyone knows what I need to do lemme know
:-)  Thanks :-) 

Dana


 
 The problem lies somewhere with your boot loader not
 booting the kernel you 
 want it to. Could you tell us something about it? Is
 it grub or lilo? The 
 contents of your /etc/lilo.conf or
 /boot/grub/grub.conf (or 
 /boot/grub/menu.lst)?
 
 On Sunday 26 October 2003 18:36, Dana Schoonover
 wrote:
  [EMAIL PROTECTED] r0b0tg1rl]$ uname -a
  Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13
  17:54:28 EST 2003 i686 athlon i386 GNU/Linux
 
 
 
  Does that mean I didn't really update my kernel? 
 (If
  yes, I really need help.. *laugh*)
 
  (I was trying to go from 2.4.20-8 to 2.4.22, btw)

=
God is bigger than the boogey-man.  
       --Jr. Asparagus

__
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/

-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-



[tslug] Re: help--first time upgrading my kernel

2003-10-26 Thread Caleb Jorden
Err, yeah, I guess we are running lilo now :)   Anyway, you probably
need to run lilo -v as root in order to re-write your boot record.

Caleb

On Sun, 2003-10-26 at 22:00, Dana Schoonover wrote:
 the contents of lilo.conf are:
 
 prompt
 timeout=100
 default=linux
 lba32
 boot=/dev/hda
 compact
 image=/boot/vmlinuz-2.4.22
 append = ro root=LABEL=/
 initrd = /boot/initrd-2.4.22.img
 label = 2.4.22
 image=/boot/vmlinuz-2.4.20-8
 append = ro root=LABEL=/
 initrd = /boot/initrd-2.4.20-8.img
 label = linux
 other=/dev/hda1
 label = Windows_2000
 table = /dev/hda
 lilo.conf (END)
 
 
 the contents of grub.conf are: 
 
 # grub.conf generated by anaconda
 #
 # Note that you do not have to rerun grub after making
 changes to this file
 # NOTICE:  You do not have a /boot partition.  This
 means that
 #  all kernel and initrd paths are relative to
 /, eg.
 #  root (hd0,1)
 #  kernel /boot/vmlinuz-version ro
 root=/dev/hde2
 #  initrd /boot/initrd-version.img
 #boot=/dev/hde
 default=1
 timeout=10
 splashimage=(hd0,1)/boot/grub/splash.xpm.gz
 title Red Hat Linux (2.4.22)
 root (hd0,1)
 kernel /boot/vmlinuz-2.4.22 ro root=LABEL=/
 hdg=ide-scsi
 initrd /boot/initrd-2.4.22.img
 title Red Hat Linux (2.4.20-8)
 root (hd0,1)
 kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/
 hdg=ide-scsi
 initrd /boot/initrd-2.4.20-8.img
 title Windows2000
 rootnoverify (hd0,0)
 chainloader +1
 grub.conf (END)
 
 
 
 I think I'm using Lilo now because something or other
 was weird with grub when I switched over to my new
 hardware...  but in either case, here are the files. 
 I don't know what they're supposed to look like.. but
 they both have 2.4.22 stuff in them, so...  I don't
 know.  If anyone knows what I need to do lemme know
 :-)  Thanks :-) 
 
 Dana
 
 
  
  The problem lies somewhere with your boot loader not
  booting the kernel you 
  want it to. Could you tell us something about it? Is
  it grub or lilo? The 
  contents of your /etc/lilo.conf or
  /boot/grub/grub.conf (or 
  /boot/grub/menu.lst)?
  
  On Sunday 26 October 2003 18:36, Dana Schoonover
  wrote:
   [EMAIL PROTECTED] r0b0tg1rl]$ uname -a
   Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13
   17:54:28 EST 2003 i686 athlon i386 GNU/Linux
  
  
  
   Does that mean I didn't really update my kernel? 
  (If
   yes, I really need help.. *laugh*)
  
   (I was trying to go from 2.4.20-8 to 2.4.22, btw)
 
 =
 God is bigger than the boogey-man.  
 --Jr. Asparagus
 
 __
 Do you Yahoo!?
 Exclusive Video Premiere - Britney Spears
 http://launch.yahoo.com/promos/britneyspears/
 
 -
 To get off this list, send email to [EMAIL PROTECTED]
 with Subject: unsubscribe
 -
 


-
To get off this list, send email to [EMAIL PROTECTED]
with Subject: unsubscribe
-