欢迎来到代码驿站!

Linux

当前位置:首页 > 服务器 > Linux

移植新内核到Linux系统上的操作步骤

时间:2020-12-01 11:57:46|栏目:Linux|点击:

1、在ubuntu官网下载ubuntu16.04的镜像和对应ubuntu16.04的内核版本源代码,或者在镜像源上找

2、安装ubuntu16.04到PC主机上

接下来执行以下:

编译新的Linux内核给X86内核使用出现以下错误:

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

解决方法:

(1)下载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
  • 然后打开Makefile
  • 搜索install_docs,将这个编译选项去掉。
  • make && make install
  • cp ./tmp/include/*   /usr/include 
  • cp ./tmp/lib/*       /usr/lib

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

个人推荐第二种。

再到内核源码根目录

  • cp /boot/config-xxxxxx-generic
  • make -jx (x代表数字2,4,8,表示CPU核心数)
  • make modules_install
  • make install
  • 确认成功后,reboot

内核移植成功。

总结

上一篇:Linux SSH 安全策略 更改 SSH 端口

栏    目:Linux

下一篇:centos 7中设置tomcat 7为系统服务的方法详解

本文标题:移植新内核到Linux系统上的操作步骤

本文地址:http://www.codeinn.net/misctech/28146.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有