"livecd linux # cp arch/i386/boot/bzImage /boot/kernel"
Can someone tell me what the difference is between the bzImage and the vmlinux kernels
pfadt

Code: Select all
sh /usr/src/linux-2.6.19-gentoo-r5/arch/i386/boot/install.sh 2.6.19-gentoo-r5 arch/i386/boot/bzImage System.map "/boot"installkernel version zImage System.map [directory]
The new kernel is installed into {directory}/vmlinuz-{version}, a link is made from {directory}/vmlinuz to the new kernel, and the previously installed kernel is available as {directory}/vmlinuz.old.
installkernel calls mkboot -i to make the system bootable after the kernel is installed.
mkboot [-r rootpartition] [-i] [-d device] [kernel]
By default the bootdisk will use the kernel /vmlinuz and the current root partition. Use the -r option to specify a different partition, and provide the new kernel file directly to specify a different kernel.
If invoked with the -i option, it tries to make a Debian GNU/Linux system bootable after a new kernel was installed by
/sbin/installkernel. If GRUB is installed, it does nothing. If LILO is in use, it runs /sbin/lilo.