Linux内核升级之制作initrd.img及其new-kernel-pkg(.sh)使用

2023-10-30 05:48

本文主要是介绍Linux内核升级之制作initrd.img及其new-kernel-pkg(.sh)使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、从编译好的源码中拷贝bzImage和System.map文件到/boot目录,并重命名。

# cp linux-2.6.32.6/arch/i386/boot/bzImage /boot/vmlinuz-2.6.32.6

# cp linux-2.6.32.6/System.map /boot/System.map-2.6.32.6

 

注意:

1)、vmlinuz和System.map的全名(包括版本号)一定要正确,要不new-kernel-pkg的脚本无法找到上述文件!

2)、编译过程中执行:make bzImage, make modules, make modules_install(拷贝*.ko文件到/lib/modules/2.6.32.6目录下)

 

2、执行命令制作initrd-2.6.32.6.img

# new-kernel-pkg --mkinitrd --depmod --install 2.6.32.6

 

3、/boot目录文件

 

4、new-kernel-pkg脚本

 

 

#!/bin/bash

#

# new-kernel-pkg

# Invoked upon installation or removal of a kernel package, the following

# tasks are/can be done here:

# creation/removal of initrd

# run of depmod/removal of depmod generated files

# addition/removal of kernel images from grub/lilo configuration (via grubby)

#

# Copyright 2002-2008 Red Hat, Inc.  All rights reserved.

#

# This program is free software; you can redistribute it and/or modify

# it under the terms of the GNU General Public License as published by

# the Free Software Foundation; either version 2 of the License, or

# (at your option) any later version.

#

# This program is distributed in the hope that it will be useful,

# but WITHOUT ANY WARRANTY; without even the implied warranty of

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

# GNU General Public License for more details.

#

# You should have received a copy of the GNU General Public License

# along with this program.  If not, see <http://www.gnu.org/licenses/>.

#

 

PATH=/sbin:/bin:$PATH

 

lilo=/sbin/lilo

 

# some defaults that are sane for most arches

kernelName=vmlinuz

 

if [ -x ./grubby ]; then

    grubby=./grubby

else

    grubby=/sbin/grubby

fi

 

[ -f /etc/sysconfig/kernel ] && . /etc/sysconfig/kernel

 

cfgGrub=""

cfgLilo=""

runLilo=""

grubConfig=""

 

ARCH=$(uname -m)

 

if [ $ARCH = 'ia64' ]; then

    liloConfig=/boot/efi/EFI/redhat/elilo.conf

    bootPrefix=/boot/efi/EFI/redhat

    liloFlag=elilo

    isx86=""

elif [ $ARCH = 'ppc64' -o $ARCH = 'ppc' ]; then

    liloConfig=/etc/yaboot.conf

    bootPrefix=/boot

    lilo=/sbin/ybin

    liloFlag=yaboot

    runLilo="yes"

    isx86=""

elif [ $ARCH = 'sparc' -o $ARCH = 'sparc64' ]; then

    liloConfig=/etc/silo.conf

    bootPrefix=/boot

    liloFlag=silo

    lilo=/sbin/silo

    isx86=""

elif [ $ARCH = 's390' -o $ARCH = 's390x' ]; then

    liloConfig=/etc/zipl.conf

    bootPrefix=/boot

    liloFlag=zipl

    lilo=/sbin/zipl

    runLilo="yes"

    isx86=""

else

    # this leaves i?86 and x86_64

    liloConfig=/etc/lilo.conf

    grubConfig=$(readlink -f /etc/grub.conf 2>/dev/null)

    bootPrefix=/boot

    liloFlag=lilo

    isx86="yes"

fi

 

mode=""

version=""

initrd=""

dracut=""

initrdfile=""

moddep=""

verbose=""

makedefault=""

package=""

mbkernel=""

mbargs=""

adddracutargs=""

这篇关于Linux内核升级之制作initrd.img及其new-kernel-pkg(.sh)使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/305979

相关文章

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P

浅析Rust多线程中如何安全的使用变量

《浅析Rust多线程中如何安全的使用变量》这篇文章主要为大家详细介绍了Rust如何在线程的闭包中安全的使用变量,包括共享变量和修改变量,文中的示例代码讲解详细,有需要的小伙伴可以参考下... 目录1. 向线程传递变量2. 多线程共享变量引用3. 多线程中修改变量4. 总结在Rust语言中,一个既引人入胜又可

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三

Linux中shell解析脚本的通配符、元字符、转义符说明

《Linux中shell解析脚本的通配符、元字符、转义符说明》:本文主要介绍shell通配符、元字符、转义符以及shell解析脚本的过程,通配符用于路径扩展,元字符用于多命令分割,转义符用于将特殊... 目录一、linux shell通配符(wildcard)二、shell元字符(特殊字符 Meta)三、s

Linux之软件包管理器yum详解

《Linux之软件包管理器yum详解》文章介绍了现代类Unix操作系统中软件包管理和包存储库的工作原理,以及如何使用包管理器如yum来安装、更新和卸载软件,文章还介绍了如何配置yum源,更新系统软件包... 目录软件包yumyum语法yum常用命令yum源配置文件介绍更新yum源查看已经安装软件的方法总结软

linux报错INFO:task xxxxxx:634 blocked for more than 120 seconds.三种解决方式

《linux报错INFO:taskxxxxxx:634blockedformorethan120seconds.三种解决方式》文章描述了一个Linux最小系统运行时出现的“hung_ta... 目录1.问题描述2.解决办法2.1 缩小文件系统缓存大小2.2 修改系统IO调度策略2.3 取消120秒时间限制3

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

Linux:alias如何设置永久生效

《Linux:alias如何设置永久生效》在Linux中设置别名永久生效的步骤包括:在/root/.bashrc文件中配置别名,保存并退出,然后使用source命令(或点命令)使配置立即生效,这样,别... 目录linux:alias设置永久生效步骤保存退出后功能总结Linux:alias设置永久生效步骤

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni