For upgrading present kernel to linux-next kernel, we need to follow below steps.

1. Check present kernel version:

Check which kernel you have, by running the following command. This should print the version of the kernel that you are using

uname -r

Saving present kernel version in present-version.txt

uname -r > present-version.txt

2. Install required packages:  like "git, make, tar, gcc, bc, patch, dos2unix, wget, xz"

Use below commands based on Linux distro.

zypper --non-interactive install git make tar gcc bc patch dos2unix wget xz

yum install -y git make tar gcc bc patch dos2unix wget xz

apt-get install -y git make tar gcc bc patch dos2unix wget

3. Download linux-next kernel from git.

git clone git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git

It will download the code into linux-next directory.

cd linux-next/

4. Creating the .config file.

Creating new .config file based on a previous .config file

if you have an existing configuration from an older kernel, copy the old .config file in to linux-next directory as ".config"(recommended way)

cp /boot/config-`uname -r` .config

if old configuration file  not exists, you can create a .config file by running below command

yes "" | make oldconfig

5. Modifications in “.config” file:

a. Enabling HyperV support:

Recent changes to kernel requires setting “CONFIG_HYPERVISOR_GUEST” to enable all guest virtualization drivers. So we need to add CONFIG_HYPERVISOR_GUEST=y to .config file.

CONFIG_HYPERVISOR_GUEST=y

b. Enable Ext4 support:

Ext3 is enabled by default, but in some distros Ext4 is not enable by default.

CONFIG_EXT4_FS=y

6. Configure the kernel options:

This “oldconfig” process will carry over your previous settings, and prompt you if there are new features not covered by your earlier .config file

yes "" | make oldconfig

7. Build the kernel:

Now compile the actual kernel. This can take more than 20 minutes to complete

Based on the processor count, we can run make cmd

make -j`nproc` (running “nproc” processes at a time)

Check make command executed successfully or not.

8. Following changes are needed on OpenSUSE, other distributions may not need this step:

Removing any scsi_id references in /etc/default/grub and /etc/default/grub_installdevice files

and then run "grub2-mkconfig"

grub2-mkconfig

9. Building the kernel modules:

a. Make the modules: Modules are parts of the kernel that are loaded on the fly, as they are needed. They are stored in individual files

make modules

b. Install the modules: This will copy all the modules to a new directory, "/lib/modules/<kernel version>"

make modules_install

10. Installing the kernel:

Now install linux-next kernel using below command.

make install

11. Grub Modification:

Update grub.conf based on grub version, make new kernel as default kernel

For grub V1 files, change default value to 0

default=0

For grub V2 files, run below commands

grub2-mkconfig -o /boot/grub2/grub.cfg

grub2-set-default 0

12. Ensure eth0 is up and running

Sometimes eth0 will not run after reboot, so we need to add below command to either rc.local or after.local based on distro

ifup eth0 > /dev/null

13. Reboot the VM

Reboot the machine, you will be in the new kernel. Check the kernel using "uname -r"

reboot [or] init 6

uname -r

Note: Before reboot check new kernel position in the grub.cfg [or] grub2.cfg with older one and make it as default.

Issues we faced while installing new kernel:

1. Facing errors in crypto/signature/ksign-publickey.c file: For this issue try below procedure.

Run "make menuconfig", Disable "Module signature verification (EXPERIMENTAL)" in "Enable loadable module support" and

Disable "In-kernel signature checker (EXPERIMENTAL)" in "Cryptographic API" save and exit

Now build your kernel with the modified .config file

2. Facing errors Like "lib/locking-selftest.c:1546: error: implicit declaration of function ‘raw_spin_lock_nest_lock’"

You need to replace the raw_spin_lock_nest_lock with spin_lock_nest_lock in ww_test_spin_nest_unlocked function of lib/locking-selftest.c file

3. Facing disk space issues:

For this we need to make sure at least 20GB is available on disk.

Linux - 升级+编译kernel的更多相关文章

  1. 【转载】Linux升级NTPD服务器-编译安装ntp-4.2.8p12与配置

    [转载]Linux升级NTPD服务器-编译安装ntp-4.2.8p12与配置 1. 系统与软件版本 1.1 系统版本 rhel6.4(Red Hat Enterprise Linux Server r ...

  2. Linux内核编译完整过程

    Linux内核编译完整过程 通过网上的资料我自己的实际内核编译,我把对Linux内核编译的过程写在这里,也许对其他的Linux爱好者的编译学习有些帮助,其中很大部分是网上的资料,另外就是我在实际编译过 ...

  3. linux下编译出现空间不足解决办法

    linux下编译出现空间不足解决办法 编译内核出现问题: AS      .tmp_kallsyms1.o .tmp_kallsyms1.S:2: fatal error: when writing ...

  4. 运行在TQ2440开发板上以及X86平台上的linux内核编译

    一.运行在TQ2440开发板上的linux内核编译 1.获取源码并解压 直接使用天嵌移植好的“linux-2.6.30.4_20100531.tar.bz2”源码包. 解压(天嵌默认解压到/opt/E ...

  5. linux下编译原理分析

    linux下编译hello.c 程序,使用gcc hello.c,然后./a.out就能够执行:在这个简单的命令后面隐藏了很多复杂的过程,这个过程包含了以下的步骤: ================= ...

  6. linux内核编译环境配置

    linux内核编译环境配置 如果不是编译内核,只需要安装与内核相匹配的kernel-devel开发包即可.即是/lib/modules/`uname -r`/build -> /usr/src/ ...

  7. linux下编译运行驱动

    linux下编译运行驱动 嵌入式linux下设备驱动的运行和linux x86 pc下运行设备驱动是类似的,由于手头没有嵌入式linux设备,先在vmware上的linux上学习驱动开发. 按照如下方 ...

  8. hi3531 SDK 编译 kernel, 修改 参数

    开发环境用户指南上这么写的 3.1 内核源代码 成功安装Hi3531 SDK后,内核源代码已存放于SDK目录下的osdrv/目录中,用户可 直接进入目录进行相关操作. 3.2 配置内核 如果对内核和H ...

  9. Linux内核编译与安装

    2013-04-16    Linux内核介绍  Linux内核是一个用C语言写成的,符合POSIX标准的类Unix操作系统.内核是操作系统中最基本的一部分,提供了众多应用程序访问计算机硬件的机制.L ...

随机推荐

  1. CentOS 7 minimal 版本安装后网络配置

    本博文主要为你讲解如何再CentOS 7中启用网络. 1.首先使用root登录服务器,输入 nmcli d 我们发现网卡是处于禁用状态. 2.打开网络管理器界面,再终端输入 nmtui 打开界面如上, ...

  2. asp.net解决高并发的方案. (转自网络)

    最近几天一直在读代震军的博客,他是Discuz!NT的设计者,读了他的一系列关于Discuz!NT的架构设计文章,大呼过瘾,特别是Discuz!NT在解决高访问高并发时所设计的一系列方案,本人尤其感兴 ...

  3. Part 93 Protecting shared resources from concurrent access in multithreading

  4. HTML+CSS学习总结:

    1. 注释:<div> 是一个块级元素,也就是说,浏览器通常会在 div 元素前后放置一个换行符. 提示:请使用 <div> 元素来组合块级元素,这样就可以使用样式对它们进行格 ...

  5. js 调用php代码

    <?php $test = "var a = ".$_GET['test'].";"; ?> <mce:script type="t ...

  6. Sublime Python 插件配置合集

    Python PEP8 Autoformat 插件 这是用来按PEP8自动格式化代码的.可以在包管理器中安装.快捷键 CTRL+SHIFT+R 自动格式化python代码 { "auto_c ...

  7. Apple Watch开发之界面之间的正向传值

    主要分两种,一种是故事板中通过segue进行的传值,第二种是使用代码. 贴代码 24行代码是代码进行传值 35是故事板中的

  8. 复习IOS多线程知识

    线程的注意点 1.不要同时开太多的线程(1~3条线程即可,不要超过5条) 2.线程概念 * 主线程 : UI线程,显示.刷新UI界面,处理UI控件的事件 * 子线程 : 后台线程,异步线程 3.不要把 ...

  9. WAS缓存导致修改文件不生效问题

    当用ftp上传部署增量文件,was应用不生效问题解决方法:一. 修改web.xml文件,需要修改以下三个目录下的文件:1. /opt/IBM/WebSphere/AppServer/profiles/ ...

  10. 8款功能强大的最新HTML5特效实例

    1.HTML5 Canvas画板画图工具 可定义笔刷和画布 今天要分享的这款HTML5 Canvas画图工具就可以简单实现网络画图的功能,我们可以自定义笔刷的类型.粗细.颜色,也可以定义画布的大小和背 ...