运行环境:VMware® Workstation 7.1.2 build-301548
Linux版本:Red Hat Enterprise Linux 5.5
升级步骤:
⒈查看内核版本
[root@localhost ~]# uname -a
[root@localhost ~]# Linux Kernel 2.6.18-194.el5 #1 SMP Tue Mar 16 21:52:43 EDT 2010 i686 i686 i386 GNU/Linux
我们可以看到内核版本是 2.6.18-194.el5
⒉下载内核源代码
下载地址:
Linux内核官网:http://www.kernel.org/
2.6.39.2内核下载:http://www.kernel.org/pub/
linux/kernel/v2.6/
linux-2.6.39.2.tar.bz2
将linux-2.6.39.2.tar.bz2下载到opt文件夹里
⒊解压下载的内核包
[root@localhost ~]# cd /opt
[root@localhost opt]# tar jxvf linux-2.6.39.2.tar.bz2
[root@localhost opt]# cd /opt/linux-2.6.39.2
[root@localhost linux-2.6.39.2]# make localmodconfig
HOSTCC scripts/basic/fixdep
/bin/sh: gcc: command not found
make[1]: *** [scripts/basic/fixdep] 错误 127
make: *** [scripts_basic] 错误 2
[root@rekfan linux-2.6.39.2]#
出现错误了,原因是我们在虚拟机安装的,安装的时候没有安装gcc工具!