1820694 Members
2678 Online
109627 Solutions
New Discussion юеВ

vmlinux urgent

 
linuxtolinux
Frequent Advisor

vmlinux urgent

hi all,
how can I obtain vmlinux from vmlinuz?

thanks
9 REPLIES 9
Yogeeraj_1
Honored Contributor

Re: vmlinux urgent

hi,

vmlinuz is a compressed vmlinux
( say, suitable to fit onto a floppy for booting off of it )

The Linux kernel executable was made into a compressed file and compressed files typically have a z or gz extension on Unix-like systems, the name of the compressed kernel executable became vmlinuz.

try to gunzip or unzip the file.

kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Vitaly Karasik_1
Honored Contributor

Re: vmlinux urgent

Yogeeraj is right - you can unzip vmlinuz.
But may I ask you why do you want/need this?
Do you have a problem with booting your kernel?
linuxtolinux
Frequent Advisor

Re: vmlinux urgent

hi guys,

I installed centos 4.2 and vmlinux didn't appear under /boot. It seems it needs the debug info packages which is on a separat disk than the 4 binaries I donwloaded.

thanks
Steven E. Protter
Exalted Contributor

Re: vmlinux urgent

Shalom,

You install most likely failed. I recommend doing it over again.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Vitaly Karasik_1
Honored Contributor

Re: vmlinux urgent

what do you have into /etc/grub.conf?
usually RH and other distros use vmlinuz for boot.
Manuel Wolfshant
Trusted Contributor

Re: vmlinux urgent

actually NO current distribution uses vmlinux anymore...
Manuel Wolfshant
Trusted Contributor

Re: vmlinux urgent

actually NO current distribution uses vmlinux anymore; for years the compressed image (vmlinuz) is used instead.
Andrew Cowan
Honored Contributor

Re: vmlinux urgent

If you rebuild the kernel vmlinuz may have been left somewhere in "/usr/src" and simply requires moving to /boot. If this is the case remember to also move the "system.map" file.
linuxtolinux
Frequent Advisor

Re: vmlinux urgent

thanks all