花了幾天才編譯成功kernel2.6.7,其過程真可謂艱辛.古語有雲:"苦盡甘來!"現在終於可以樂上一陣了.由於許多朋友對操作的順序及某些重要的配置知之甚少或知之不詳,往往病急亂投醫.加之網上的信息多且煩雜,使得編譯內核成功率不高,甚至造成原來的系統崩潰的也不在少數.我就是其中一個。 其實,編譯內核並不是一件難事.如果能按照正確的方法來操作,最多花上一個半小時就能搞定.是不是很受鼓舞呀! 廢話少說,現在我們馬上開始.我原來的系統是redhat9.0,內核2.4.20-8,編譯的內核2.6.7,僅供參考. 共分為四部分:編譯前准備->編譯配置->編譯過程->運行內核的常見問題
一 編譯前准備 1)下載一份內核源代碼,我下的是Linux-2.6.7.tar.bz2,你可在如下地址下載它或者是更新的版本. http://kernel.org/pub/linux/kernel/v2.6/ 2) 下載最新版本的module-init-tools( "module-init-tools-3.0.tar.gz" and "modutils-2.4.21-23.src.rpm") http://www.kernel.org/pub/linux/kernel/people/rusty/modules/module-init-tools-3.0.tar.gz http://www.kernel.org/pub/linux/kernel/people/rusty/modules/modutils-2.4.21-23.src.rpm 3)安裝module-init-tools. 它會替代depmod [/sbin/depmod]和其他工具. tar -zxvf module-init-tools-3.0.tar.gz cd module-init-tools-3.0 ./configure --prefix=/sbin make make install ./generate-modprobe.conf /etc/modprobe.conf 4)安裝modutils-2.4.21-23.src.rpm. 你可能會看到"user rusty and group rusty not existing"的警告. 沒關系,你只需強制安裝就是了.如果你不對Redhat 9和Redhat 8做這幾步, 你將會在"make modules_install"這一步時出現問題. rpm -i modutils-2.4.21-23.src.rpm rpmbuild -bb /usr/src/redhat/SPECS/modutils.spec rpm -Fi /usr/src/redhat/RPMS/i386/modutils-2.4.21-23.i386.rpm 5)解壓縮內核源代碼.把下載的源代碼包放到目錄/usr/src下,然後 cd /usr/src tar xvfj linux-2.6.7.tar.bz2 cd linux-2.6.7
二 編譯配置 在這一部分涉及幾個重要模塊的配置請,特別注意.一般用"make menUConfig"命令來配置內核. 輸入以上命令後出現一個菜單界面,用戶可以對需要的模塊.下面著重講幾個重要的配置 1)文件系統 請務必要選中ext3文件系統, File systems---> [*] Ext3 journalling file system support [*] Ext3 Security Labels [*] JBD (ext3) debugging support 以上三項一定要選上,而且要內建(即標*). 這個非常重要,在配置完後一定要檢查一下.config文件有沒有"CONFIG_EXT3_FS=y"這一項. 如果不是"CONFIG_EXT3_FS=y"而是"CONFIG_EXT3_FS=m",你在運行內核時就會遇上以下錯誤: pivotroot: pivot_root(/sysroot,/sysroot/initrd) failed 2)網卡驅動 請務必把自己網卡對應的驅動編譯進內核,比較普遍的網卡是realtek 8139,以下就是這種網卡的配置,以供參考 Device Drivers---> Networking support---> Ethernet (10 or 100Mbit) ---> RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL) RealTek RTL-8139 PCI Fast Ethernet Adapter support 3)聲卡驅動 也要選擇自己聲卡對應的驅動編譯進內核,比較普遍的聲卡是i810_audio,以下就是這種聲卡的配置,以供參考 Device Drivers ---> Sound ---> Sound card support Advanced Linux Sound Architecture ---> Advanced Linux Sound Architecture Sequencer support < > Sequencer dummy client OSS Mixer API OSS PCM (digital audio) API[*] OSS Sequencer API RTC Timer support PCI devices ---> Intel i8x0/MX440, SiS 7012; Ali 5455; NForce Audio; AMD768/8111 Open Sound System ---> < > Open Sound System (DEPRECATED) 以上三項配置關系到新內核能否正常運行,請備加注意.其他的配置如果不是很了解,大可以按默認的選擇.
三 編譯 按如下命令編譯,大概需要一個多小時,大可以好好放松一下 make bzImage make modules make modules_install make install 運行新內核之前,請檢查一下/boot/grub/grub.conf的內容,下面的配置可作參考 # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You have a /boot partition. This means that # all kernel and initrd paths are relative to /boot/, eg. # root (hd0,0) # kernel /vmlinuz-version ro root=/dev/hdc3 # initrd /initrd-version.img #boot=/dev/hdc default=1 timeout=10 splashimage=(hd0,0)/grub/splash.xpm.gz title Red Hat Linux (2.6.7) root (hd0,0) kernel /vmlinuz-2.6.7 ro root=LABEL=/ initrd /initrd-2.6.7.img title Red Hat Linux root (hd0,0) kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ initrd /initrd-2.4.20-8.img
四 運行內核的常見問題 1)RPM問題 進入編譯好的內核後,與RPM相關的命令有些不能使用,並出現下列錯誤: rpmdb: unable to join the environment error: db4 error(11) from dbenv->open: Resource temporarily unavailable error: cannot open Packages index using db3 - Resource temporarily unavailable (11) error: cannot open Packages database in /var/lib/rpm no packages 解決方法是執行“export LD_ASSUME_KERNEL =2.2.25”命令,也可以將其寫入/etc/bashrc。 2)Sound問題 聲音部分的模塊名也改變了。我的筆記本原來的聲卡驅動是i810_audio,現在已改為snd-intel8x0。因此需要把下面的內容添加到/etc/modprobe.conf中: alias char-major-14 soundcore alias sound snd-intel8x0 alias sound-slot-0 snd-intel8x0 alias snd-card-0 snd-intel8x0 alias sound-service-0-0 snd-mixer-oss alias sound-service-0-1 snd-seq-oss alias sound-service-0-3 snd-pcm-oss alias sound-service-0-8 snd-seq-oss alias sound-service-0-12 snd-pcm-oss install snd-intel8x0 /sbin/modprobe --ignore-install sound-slot-0 && { /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1; /bin/true; } remove snd-intel8x0 { /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1; /bin/true; }; /sbin/modprobe -r --ignore-remove sound-slot-0 然後執行“modprobe sound”加載聲音模塊,並使用下列命令檢驗聲卡驅動: #cat /proc/asound/cards 顯示結果如下: 0 [SI7012]: ICH - SiS SI7012 SiS SI7012 at 0xdc00, irq 11 3)VMware問題 解決方法是: ◆ 將/usr/bin/vmware-config.pl中所有的“/proc/ksyms”替換為“/proc/kallsyms”。使用“sed”命令可以達到這個目的。 ◆ 重新運行該腳本,使用內核頭文件編譯新的內核模塊。在編譯過程中如發生錯誤,應該進入/usr/lib/vmware/modules/source,使用下面的命令將vmnet.tar解包: #tar xvf vmnet.tar ◆ 進入vmnet-only目錄修改bridge.c文件。將“atomic_add(skb->truesize, &sk->wmem_alloc);”修改為“atomic_add(skb->truesize, &sk->sk_wmem_alloc);”,並用類似的方式將“protinfo”改為“sk_protinfo”。 ◆ 再次把vmnet-only目錄用下面的命令重新打包為vmmon.tar: #tar cvf vmmon.tar v