当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > 编译内核2.4.20-8custom

Unix/Linux
Linux命令Man解释:useradd:帐号建立或更新
Linux 网管 123 --- 第7章. 自订的组态及管理内容 -7.使用 Linuxc
Linux 网管 123 --- 第8章. 备份及回存程序 -1.伺服器备份程序
Linux 网管 123 --- 第8章. 备份及回存程序 -2.伺服器回存程序(tar.
Linux 网管 123 --- 第8章. 备份及回存程序 -3.Cisco 路由器组态备
Linux 网管 123 --- 第9章. 各种杂项管理工作 -1.检查储存空间
Linux 网管 123 --- 第9章. 各种杂项管理工作 -2.管理进程
Linux 网管 123 --- 第9章. 各种杂项管理工作 -3.进程的启动及停止
Linux 网管 123 --- 第9章. 各种杂项管理工作 -4.使用 Cron 及 C
Linux 网管 123 --- 第10章. 升级 Linux 及其他应用软体 -1.使用
Linux 网管 123 --- 1. 前言 2. 简介
Linux 网管 123 --- 第3章. 概观 Linux
Linux 网管 123 --- 第4章. 安装及硬体组态 - 1.建立一张安装磁片
轻轻松松的安装Slackware Linux -- 4.如何在硬碟建置Linux系统
轻轻松松的安装Slackware Linux -- 5.其他非标准安装程序解析
如何重新设定时区
Linux中有没有支援 Solairs x86 的档案系统?有的话要如何mount?
MBR如果被覆盖了怎麽办?
如何使用命令trap来捕捉信号?
如何进行增量备份?

Unix/Linux 中的 编译内核2.4.20-8custom


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 53 ::
收藏到网摘: n/a


编译内核
做内核的错误信息:/usr/src/linux-2.4.20-8/include/linux/dcache.h: In function `dget':/usr/src/linux-2.4.20-8/include/linux/dcache.h:254: warning: implicit declaration of function `__out_of_line_bug_R8b0fd3c5'cpufreq.c: In function `cpufreq_parse_policy':cpufreq.c:111: warning: implicit declaration of function `sscanf_R859204af'cpufreq.c: In function `cpufreq_proc_read':cpufreq.c:225: warning: implicit declaration of function `sprintf_R1d26aa98'cpufreq.c: In function `cpufreq_proc_init':cpufreq.c:327: warning: implicit declaration of function `printk_R1b7d4074'cpufreq.c: In function `cpufreq_restore':cpufreq.c:1109: warning: implicit declaration of function `panic_R01075bf0'cpufreq.c: At top level:cpufreq.c:192: warning: `cpufreq_setup' defined but not usedmake[1]: *** [cpufreq.o] Error 1make[1]: Leaving directory `/usr/src/linux-2.4.20-8/kernel'make: *** [_mod_kernel] Error 2解决办法:先执行:make mrpoper做内核的方法:将下载好的内核解压缩到:/usr/src/目录下 #cd /usr/src/ 进入该目录 #ln linux-2.4.26 linux-2.4 创建该目录的符号链接文件 #cd linux-2.4 进入内核目录 修改Makefile文件,找到包含EXTAVERSION的行将其改为EXTRAVERSION=qun #make mrproper 确保源文件的一致性 #make xconfig 选择需要编译进内核的功能 #make dep 解决依赖性 #make clean#make bzImage 生成内核 #make modules 编译内核模块 #cp usr/src/linux-2.4/arch/i386/boot/bzImage /boot/vmlinuz-2.4.20tcp#make modules_install 安装内核模块记着查看/lib/modules新生成一个目录为:2.4.20-8custom#mkinitrd /boot/initrd-2.4.20-8custom.Img 2.4.20-8custom 生成启动镜像文件 # cp /usr/src/linux-2.4/System.map /boot/System.map-2.4.20-8tcp删除原有的/boot下的System.map文件Ln –s /boot/System.map-2.4.20-8tcp /boot/System.map #vi /etc/grub.conf # 在最后部分添加如下行: title Red hat Linux (2.4.20-8-tcp01) root (hd1,5) kernel /vmlinuz-2.4.20-8tcp ro root=LABEL=/12 initrd /initrd-2.4.20-8custom.img:wq! #reboot 重新启动后就可以看到刚刚安装好的内核了。 #对于2.6的内核而言,步骤就简单了很多只需要这几个命令: make xconfig、make、make installMOUNT出错:# mount -t nfs 10.65.69.224:/home /mntmount: RPC: Program not registered启动 nfs进程解决这个问题:service nfs start

编译完