程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Centos 6.5 編譯Lilo 22.8

Centos 6.5 編譯Lilo 22.8

編輯:關於PHP編程

Centos 6.5 編譯Lilo 22.8


最近在調查一個bug,這個bug的詳細調查結果,在下一篇博文中進行描述。在本bug調查過程中,牽扯到bootloader —— LILO的編譯。
LILO的HomePage:http://lilo.alioth.debian.org/
下載、解壓後,make,報了以下錯誤信息:
  1. [root@localhost lilo-22.8]# make all
  2. ./checkit
  3. GCC version 2.91 or later is required
  4. gcc version 4.4.7
  5. OKAY

  6. AS86 version 0.16.10 or later is required
  7. as86 is not present

  8. LD86 version 0.16.10 or later is required
  9. ld86 is not present

  10. BCC version 0.16.10 or later is recommended
  11. bcc is not present
  12. You will not be able to make floppy2, diag2.img, or lilo.com
  13. make: *** [test.img] Error 1
原因:編譯LILO,需要用到16位、32位匯編編譯器as86。目前我們的編譯環境中尚未安裝該部分工具。
通過http://rpmfind.net/查詢,確定as86、ld86、bcc工具包含在dev86包中,通過以下命令進行安裝即可。
  1. sudo yum install dev86

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved