近日按照《Linux核心的設計與實作》嘗試編譯核心,遇到很多問題,也學到不少經驗。
2. 如果已經安裝Win7且磁盤系統轉換為NTFS,用EasyBCD硬碟安裝Win7+Ubuntu雙系統不可行
3. 2.6.13核心需要2.95.3版本的gcc
4. 練習核心編譯時,可以使用比系統自帶核心稍微新一些的,比如Ubuntu自帶2.6.32.21,下載下傳2.6.32.24進行練習比較簡單。核心編譯涉及的諸如gcc等程式的版本,過老的核心可能在新版gcc下無法編譯通過。
5. make config、make、make modules_install、make install後可能需要對grub進行配置:
a.把源碼根目錄下System.map拷貝至/boot下并改名為System.map-2.6.32.24;
b.把源碼目錄下arch/x86/boot/bzImage拷貝到/boot目錄下;
c.使用bzImage生成img檔案initrd.img-2.6.32.24:
update-initramfs -c -k 2.6.32.24
d.把bzImage改名為vmlinuz-2.6.32.24;
e.修改/boot/grub/grub.cfg,添加類似于下面的内容:
<a></a>
6. 重新開機後選擇該核心,在終端中輸入uname -a 檢視核心版本。
grub2之前的,在/boot/grub/menu.lst或者grub.conf裡面修改。把windows那塊放在前面即可;
grub2:把/etc/grub.d/目錄下的os-prober前面的數字改小一些,小到比linux還小一級就行了。再update-grub,一勞永逸,以後更新也不怕了。
8. 附:在VMware Workstation中使用Red Hat 9.0進行2.4更新2.6.13的一些注意事項
make menuconfig需要進行以下修改:
Device Drivers->SCSI device support-><*>SCSI device support
Device Drivers->SCSI device support-><*>SCSI disk support
Device Drivers->SCSI device support->SCSI low-level drivers-><*>BusLogic SCSI support
File systems-><*>Ext3 journalling file system support
File systems->[*]Ext3 Security Labels
File systems->[*]JBD (ext3) debugging support
Device Drivers->Network device support->Ethernet (10 or 100Mbit)-><*>AMD PCnet32 PCI support
Device Drivers->ATA/ATAPI/MFM/RLL support-><*>Include IDE/ATAPI CDROM support
make install的時候可能會出現如下錯誤資訊:
No module BusLogic found for kernel 2.4.20
mkinitrd failed
解決方法:
把 /sbin/mkinitrd中
for n in $scsimodules; do
# for now allow scsi modules to come from anywhere. There are some
# RAID controllers with drivers in block/
findmodule $n
done
修改為
#for n in $scsimodules; do
#findmodule $n
# done
另外,在Red Hat9.0中安裝VMTools時,不要更改gcc路徑,螢幕分辨率選擇安裝Red Hat時選擇的大小,否則容易出錯。
9. 從Windows複制到虛拟機的Linux的代碼可能總提示文法錯誤(即使沒有),這時dos2unix filename也許能幫上忙。(寫腳本程式時遇到的問題)
本文轉自五嶽部落格園部落格,原文連結:www.cnblogs.com/wuyuegb2312/archive/2012/05/07/2481276.html,如需轉載請自行聯系原作者