此处将内核由高版本替换成低版本。替换前的系统为ubuntu 12.04 kernel 3.8.0. 替换后的内核版本为2.6.35.

首先下载需要替换的内核文件,下载链接:https://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.tar.gz

下载完成后开始进行解压

$ sudo tar -zxf linux-2.6..tar.gz /usr/src

现在开始进行替换,步骤如下:

1)安装必要的软件包。在正式替换之前先安装几个必要的软件包:

$ sudo apt-get install build-essential kernel-package libncurses5-dev libqt3-headers

各个包的主要作用如下:

  build-essential: 基本的编程库(gcc, make等)

  kernel-package: Debian 系统里生成 kernel-image 的一些配置文件和工具

  libncurses5-dev: make menuconfig要调用的

  libqt3-headers: make xconfig要调用的

其他的工具在升级过程中可以根据提示安装。

2)解压。将已经下载的linux-2.6.35.tar.gz拷贝到/usr/src目录下,然后解压到/usr/src/linux-2.6.35目录下。

3)拷贝原有配置文件。把正在使用中的内核配置文件/usr/src/linux-headers-3.8.0-29-generic/.config 拷到/usr/src/linux-2.6.35目录下

$ sudo cp /usr/src/linux-headers-3.8.--generic/.config /usr/src/linux-2.6.

4)导入配置文件。运行以下命令:

$ cd /usr/src/linux-2.6.

$ sudo make menuconfig

//*************可能出现的问题*************

问题:提示unable to find the ncurses libraries

解决方案:sudo apt-get install ncurses-dev

*************///

这时,终端会弹出一个配置界面,注意主菜单最后有两项:

load a kernel configuration...

save a kernel configuration...

先选第一项 load ....,意思是,利用当前的内核配置详单来设置将要编译的内核,然后选save这一项保存,最后退出配置界面。

5)开始编译,依次输入以下命令:

$ sudo make mrproper   //清除以前曾经编译过的旧文件,如果你是第一次编译,可不执行。

$ sudo make              //编译,此过程需要较长时间。

//*************可能出现的问题*************

问题1:gcc: error: elf_i386: no such file or directory

解决方案:

在文件:/usr/src/linux-2.6.35/arch/x86/vdso/Makefile中:

replace "-m elf_x86_64" by "-m64" on the line starting with VDSO_LDFLAGS_vdso.lds

replace "-m elf_x86" by "-m32" on the line starting with VDSO_LDFLAGS_vdso32.lds

问题2:error: duplicate member ‘page’

解决方案:

打开文件drivers/net/igbvf/igbvf.h,然后将129行的代码注释掉即可。

struct page *page                  //将此代码删除或注释掉

**************************//

$ sudo make install     

$ sudo make modules  //编译模块

//*************可能出现的问题*************

问题:modpost: found 96 section mismatch(es).

‘make CONFIG_DEBUG_SECTION_MISMATCH=Y’

解决方案:

sudo make CONFIG_DEBUG_SECTION_MISMATCH=y

**************************//

$ sudo make modules_install  //安装模块

6)最后创建initrd文件:

# mkinitramfs -o /boot/initrd.img-2.6.

7)更新grub引导列表

$ sudo update-grub

$ sudo gedit /boot/grub/grub.cfg

将Code3拷贝至Code1和Code2之间,即将Ubuntu, with Linux 2.6.35启动项拷贝至最前面,这样在重启时系统会自动选择第一个作为默认启动,于是就能进入内核为Linux 2.6.35的系统。

Code1

if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi

Code2

menuentry 'Ubuntu, with Linux 3.8.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os {

    recordfail

    gfxmode $linux_gfx_mode

    insmod gzio

    insmod part_msdos

    insmod ext2

    set root='(hd0,msdos1)'

    search --no-floppy --fs-uuid --set=root a5208505--4e32-b5f8-8b554b2a0b85

    linux    /boot/vmlinuz-3.8.--generic root=UUID=a5208505--4e32-b5f8-8b554b2a0b85 ro   quiet splash $vt_handoff

    initrd    /boot/initrd.img-3.8.--generic

}

Code3:

menuentry 'Ubuntu, with Linux 2.6.35' --class ubuntu --class gnu-linux --class gnu --class os {

    recordfail

    gfxmode $linux_gfx_mode

    insmod gzio

    insmod part_msdos

    insmod ext2

    set root='(hd0,msdos1)'

    search --no-floppy --fs-uuid --set=root a5208505--4e32-b5f8-8b554b2a0b85

    linux    /boot/vmlinuz-2.6. root=UUID=a5208505--4e32-b5f8-8b554b2a0b85 ro quiet splash $vt_handoff

    initrd    /boot/initrd.img-2.6.

}

可能出现的问题:

问题一:在重启后可能会出现如下问题:

warning: can't open directory /lib/modules/2.6.34/modules.dep, no such files or directory

解决方案:

这时,可以先从旧内核中进入系统,然后执行以下命令:

$ su root         //获得root权限

# cd /boot

# cp initrd.img-2.6. initrd-2.6..old              //备份原有文件

# depmod –a                                             //检查所有模块

# update-initramfs –k 2.6. –c

# cd /tmp

# gzip –dc /boot/initrd.img-2.6.| cpio –id

# touch lib/modules/2.6./modules.dep

# find ./ | cpio –H newc –o > /boot/initrd.img-2.6..new

# gzip /boot/initrd.img-2.6..new

# cd /boot

# mv initrd.img-2.6..new.gz initrd.img-2.6.

此部分的参考链接:

http://kpjack.blog.51cto.com/627289/318296/

内核替换更多介绍:

http://www.2cto.com/os/201312/265425.html

ubuntu系统内核替换的更多相关文章

  1. ubuntu 按键替换 Control_R to Left

    ubuntu 按键替换 Control_R to Left 1 查看当前键盘布局 $xmodmap -pke keycode 105 = Control_R NoSymbol Control_Rkey ...

  2. Ubuntu:替换DASH图标

    替换DASH图标 替换ubuntu搜索的图标 默认图标位置 备份 sudo mv /usr/share/unity/icons/launcher_bfb.png /usr/share/unity/ic ...

  3. 将MPLS编译进linux内核中

    系统环境:linux kernel 2.6.35.(此环境是上一篇文章中将ubuntu内核替换后的环境) 编译过程如下: 1)首先需要下载patch文件:linux-kernel-v2.6.35-mp ...

  4. Ubuntu 源使用帮助

    地址 https://mirrors.ustc.edu.cn/ubuntu/ 说明 Ubuntu 软件源 收录架构 AMD64 (x86_64), Intel x86 其他架构请参考 Ubuntu P ...

  5. ubuntu 使用阿里云 apt 源

    以下内容来自 https://opsx.alibaba.com/mirror Ubuntu对应的“帮助”信息 修改方式:打开 /et/apt/sources.list 将http://archive. ...

  6. 升级Ubuntu 16.04 到 Ubuntu 18.04 的方法

    特别注意,在进行升级前,请做好重要数据备份工作,防止升级失败或者其他奇怪原因,导致数据丢失或损坏 sudo vim /etc/apt/sources.list 将 http://archive.ubu ...

  7. 初探Docker CentOS 7.9 2009 Mini 操作系统环境初始化 和Docker初始化

    初探docker 什么是docker?docker就是一种虚拟化技术,将一个服务虚拟化成一个拥有操作系统内核作为基石的快速使用服务.不用担心环境不同服务效果 不同. docker 官网可以从中央仓库中 ...

  8. 自制Azure中国版“加血包”

    Micrsoft Azure中国版的国际出口最近升级为电话线拨号模式,目测为10个用户共享一条56kb的电话线拨号链路.有图有真相: 中国的IT从业者,有三分之一的职业生涯时间是在跟网络斗智斗勇.这点 ...

  9. Ubuntu18.04美化主题(mac主题)

    前端时间Ubuntu18.04LTS发布,碰巧之前用的Ubuntu16.04出了一点问题,懒得解决,索性就换了Ubuntu18.04. 成果: 参考博客:https://www.cnblogs.com ...

随机推荐

  1. hdu_1007_Quoit Design(最近点对)

    题目连接:hdu_1007_Quoit Design 题意: 给你平面上的一些点,让你找出这些点的最近点对的距离 题解: 采用分治,达到O(nlognlogn)的时间复杂度就能艹过去了 #includ ...

  2. php获取文件名

    php获取文件名$phpself =$_SERVER['PHP_SELF']; //获取当前文件名$str = end(explode("/",$phpself)); //去掉'/ ...

  3. .NET中公共变量与属性的区别

    在我们的程序中经常会出现以下的代码:  如:     成员变量     public   string   Name;     或者用属性     private   string   name    ...

  4. Android Audio Focus的应用(requestAudioFocus)

    网址:http://blog.csdn.net/dadoneo/article/details/8252933 FROM: http://www.linuxidc.com/Linux/2012-04/ ...

  5. Lorenzo Von Matterhorn

    Lorenzo Von Matterhorn Barney lives in NYC. NYC has infinite number of intersections numbered with p ...

  6. 黄聪:基于Asp.net的CMS系统We7架设实验(环境WIN7,SQL2005,.NET3.5)(初学者参考贴)

    http://www.cnblogs.com/huangcong/archive/2010/03/30/1700348.html

  7. codeforces 665B Shopping

    暴力 #include<cstdio> #include<cstring> #include<cmath> #include<vector> #incl ...

  8. FOJ 2206 函数求解

    水题 /* *********************************************** Author :Zhou Zhentao Email :774388357@qq.com C ...

  9. 转 使用 HttpClient 4 进行文件上传

    http://www.tuicool.com/articles/Y7reYb 1. 概述 本教程我们将描述如何使用 HttpClient 4进行一次多文件上传操作 . 我们将使用  http://ec ...

  10. 二分查找javascript

    <!doctype html> <html lang="en"> <head> <meta charset="UTF-8&quo ...