Kernel Panic?

I tryed updating fedora, redhat 9.0, and redhat 8.0 to 2.6 but whenever i did it, after the grub it came to kernel panic i followed the steps 1. download kernel source .tar.gz or .tar.bz2 format from www.kernel.org for example there will be f...




Topic Options
#6537 - 03/15/04 02:42 AM Kernel Panic?
SoulNothing Offline
enthusiast

Registered: 02/24/04
Posts: 309
I tryed updating fedora, redhat 9.0, and redhat 8.0 to 2.6 but whenever i did it, after the grub it came to kernel panic

i followed the steps
Quote:
1. download kernel source .tar.gz or .tar.bz2 format from www.kernel.org
for example there will be file like linux-2.4.22.tar.gz

2. copy it to /usr/src by following command:

cp filename.tar.gz /usr/src

3. cd to the /usr/src directory

cd /usr/src

4. issue the following command to uncompress the file

tar -xzf linux-2.4.22.tar.gz

it will extract kernel sources to /usr/src directory

right now directory for 2.4.22 will be

/usr/src/linux-2.4.22

5. create a symbolic link /usr/src/linux to point to /usr/src/linux-2.4.22
using the ln -s command:

cd /usr/src
ln -s linux-2.4.22 /usr/src/linux

6. cd to /usr/src/linux

cd /usr/src/linux

7. now issue following command

make xconfig

this will start a gui based configuration tool...where u will select the kernel options.Make sure you set fat, vfat and ntfs support and other required options.

Also it is recommended, that when the configuration is complete, you save the settings to a file on the hdd using the save to file option, so that the next time you recompile, you can directly load the configuration from the saved file and proceed to the next step

8. issue following command

make dep

9. issue following command

make clean

10. issue following command

make modules

11. issue following command

make modules_install

12. issue following command

make bzImage

now when make bzImage is done. open your grub.conf and make a backup copy of it, just to be careful forexample i did this cp /etc/grub.conf /etc/grub.backup.

13 . issue following command

make install

after make install is complete. open /etc/grub.conf and check if the entry of old kernel is still there or not. if its not there, open the backup of grub.conf that we created and copy and paste the entry of old kernel into grub.conf. if the old kernel entry is already there, thats great.

now reboot your system and enjoy new kernel.

Note: There is a way to compile kernel through rpms, but doing it source way lets u experience some cool speed plus totally your own kernel configurations, so i prefer this

which was in another thread maybe i shouldnt be trying this method beiang a noob any advice

Top
Advertisement
#6539 - 03/15/04 04:27 AM Re: Kernel Panic?
outstream Offline
journeyman

Registered: 01/17/04
Posts: 52
look around your grub.conf, may be you have to remove some enteries. I am not on Linux platform right now, or else i could post here my own grub.conf.

alright, if you please open your grub.conf with your favourite editor :p , you`ll see some enteries in it.

under the title of your newly compiled kernel there will be some entry like

for example

title Red Hat Linux 9 New Kernel (2.4.22)
root (hd0,7)
kernel /vmlinuz ro root=LABEL=/


if it is like that, remove the entries of ro root = LABEL=/, so that it will become something like

title Red Hat Linux 9 New Kernel (2.4.22)
root (hd0,7)
kernel /vmlinuz


when the same kernel panic error came to me, i tried the above given trick and it worked for me. hopefully it`ll resolve your problem.

Good luck!

Top
#6540 - 03/15/04 04:34 AM Re: Kernel Panic?
danleff Offline
Carpal Tunnel

Registered: 08/30/02
Posts: 2866
Loc: Albany, NY
Yes, these are the directions for compiling a 2.4.xx kernel, NOT the 2.6.xx series. There are differences.

You need to assure that you have updated packages, such as modutils and module-init-utils, which is different from compiling the older kernels.

See the following links;

http://kerneltrap.org/node/view/799

http://thomer.com/linux/migrate-to-2.6.html

http://linux-sxs.org/upgrading/migration26.html

Top
#6551 - 03/15/04 06:24 AM Re: Kernel Panic?
SoulNothing Offline
enthusiast

Registered: 02/24/04
Posts: 309
thanks alot try that tommorow i dont know why but anything other than fedora doesnt want to stay on my system so im sticking with fedora and btw links didnt work danleff ;(

Top
#6567 - 03/15/04 05:44 PM Re: Kernel Panic?
outstream Offline
journeyman

Registered: 01/17/04
Posts: 52
No offense but, I guess there is no need for modutils and module-init-utils, if he just wants to compile it. however, modutil and module-init-utils are required for making kernel work :p .

I compiled my 2.6.1 kernel, just with usual source way (the one i have mentioned) without modutils and module-init-utils. it worked and it still boots up, but this is another story i have difficulties with some devices working even if after installing modutils and module-init-utils.

overall, I had a tough time with 2.6.x series.

Top
#6573 - 03/15/04 09:17 PM Re: Kernel Panic?
SoulNothing Offline
enthusiast

Registered: 02/24/04
Posts: 309
outstream i dont care how i get it on i just want it on

realize i have no net access with linux just the basics so i really dont care how it gets on any documentation on the difference thanks in advance

this means i cant get files while in linux id have to reboot and get back on xp

Top
#6613 - 03/16/04 04:31 AM Re: Kernel Panic?
outstream Offline
journeyman

Registered: 01/17/04
Posts: 52
yeah thats what i am talking about, you can make it boot and work fine. give it a try, did u remove those lines from your grub.conf?

Top
#6615 - 03/16/04 05:04 AM Re: Kernel Panic?
SoulNothing Offline
enthusiast

Registered: 02/24/04
Posts: 309
sorry didnt understand i had to reinstall fedora so i have to redo the core try that soon as possible.

Top
#151279 - 11/28/04 06:15 PM Re: Kernel Panic?
CaShMoNey-420 Offline
stranger

Registered: 11/28/04
Posts: 1
Alright the first step to this incident is.... making your symbolic link after uncompressing the kernel-2.x.x-tar.gz in your /usr/src... now make sure you don't have /usr/src/linux, if so delete it, and relink your symbolic link.. then go in either using 'make menuconfig' or 'genkernel --menuconfig all", so you can go in and do your own kernel configuration. After doing so, if you chose to use 'make menuconfig' you'll have to copy down some things: cp arch/i386/boot/bzImage /boot/kernel-2.x.x
cp System.map /boot/System.map-2.x.x
cp .config /boot/config-2.x.x

If you chose 'genkernel --menuconfig all' you must then wait foro that to complete, and then proceed to make the changes to grub.

After doing these steps you are able to change your /boot/grub/grub.conf file. I prefer leaving everything as it is, and adding to it, so I can revert if needed. This is how mine looks:

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

title= Gentoo Linux
root (hd1,0)
kernel /kernel-2.4.26-gentoo-r9 root=/dev/ram0 real_root=/dev/hdb3 init=/linuxrc ramdisk=8192 vga=0x317 splash=verbose
initrd /initrd-2.4.26-gentoo-r9

#title=Gentoo linux 2.6.8 Kernel
#root (hd1,0)
#kernel /kernel-2.6.8-gentoo root=/dev/hdb3

title=Windows
root (hd0,1)
chainloader +1


Top


Forums
Windows Support Forums
Everything New Technology
Legacy OS
Hardware
Software
Games
Networking
Customization & Tweaking
Security

Linux Support Forums
Everything Linux
Linux Hardware
Linux Software
Linux Games
Linux Networking
Linux Customization & Tweaking
Linux Security

Apple Support Forums
Everything Apple
Recent Topics
What version of Linux is this?
by DxxLinux
12/15/09 07:59 PM
Anything like HyperCam?
by Luckycharm8989
12/11/09 02:08 PM
Thank you for your help
by guaiguai
12/11/09 07:29 AM
What the problem is?
by guaiguai
12/11/09 05:09 AM
Need an database for Dictionary
by shaanspecial
12/09/09 10:19 AM
Who's Online
0 Registered (), 224 Guests and 36 Spiders online.
Key: Admin, Global Mod, Mod
Forum Stats
91333 Members
24 Forums
58939 Topics
189452 Posts

Max Online: 1079 @ 03/12/08 01:36 PM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22