Steps to transplant the new kernel to the Linux system

Steps to transplant the new kernel to the Linux system

1. Download the ubuntu16.04 image and the corresponding ubuntu16.04 kernel version source code from the ubuntu official website, or find it on the image source.

2. Install Ubuntu 16.04 on the PC host

Next, execute the following:

The following error occurs when compiling a new Linux kernel for use with the X86 kernel:

scripts/sign-file.c:25:30: fatal error: openssl/opensslv.h: No such file or directory

Solution:

(1) Download openssl-1.0.1d.tar.gz

  • tar xzf openssl-1.0.1d.tar.gz
  • cd openssl-1.0.1d/
  • ./config shared no-asm --prefix=$PWD/tmp
  • Then open Makefile
  • Search for install_docs and remove this compilation option.
  • make && make install
  • cp ./tmp/include/* /usr/include
  • cp ./tmp/lib/* /usr/lib

(2)apt-get upgrade && apt-get update

Personally, I recommend the second one.

Then go to the kernel source root directory

  • cp /boot/config-xxxxxx-generic
  • make -jx (x represents the number 2, 4, 8, indicating the number of CPU cores)
  • make modules_install
  • make install
  • After confirmation, reboot

The kernel porting was successful.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to compile the Linux kernel
  • How to implement Linux deepin to delete redundant kernels
  • How to manually upgrade the kernel in deepin linux
  • In-depth analysis of the Linux kernel macro container_of
  • Linux kernel device driver character device driver notes
  • Detailed explanation of Linux kernel memory management architecture
  • Linux kernel parameter adjustment method
  • Analyze the compilation and burning of Linux kernel and device tree

<<:  MySQL SQL statement performance tuning simple example

>>:  Several methods of implementing carousel images in JS

Recommend

MySQL GROUP_CONCAT limitation solution

effect: The GROUP_CONCAT function can concatenate...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...

Solution to the problem of mysql master-slave switch canal

After configuring VIP, the error message that app...

Nginx reverse proxy to go-fastdfs case explanation

background go-fastdfs is a distributed file syste...

Detailed process of upgrading glibc dynamic library in centos 6.9

glibc is the libc library released by gnu, that i...

XHTML introductory tutorial: Web page Head and DTD

Although head and DTD will not be displayed on th...

Implementation of CSS loading effect Pac-Man

emmm the name is just a random guess 2333 Preface...

Simple example of adding and removing HTML nodes

Simple example of adding and removing HTML nodes ...

MySql8 WITH RECURSIVE recursive query parent-child collection method

background When developing a feature similar to c...

Summary of methods to check whether the port is open in Linux

Method 1: Use lsof command We can use the lsof co...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...

Example of deploying Laravel application with Docker

The PHP base image used in this article is: php:7...

Mysql dynamically updates the database script example explanation

The specific upgrade script is as follows: Dynami...