1、在ubuntu官網下載ubuntu16.04的鏡像和對應ubuntu16.04的內核版本源代碼,或者在鏡像源上找
2、安裝ubuntu16.04到PC主機上
接下來執(zhí)行以下:
編譯新的Linux內核給X86內核使用出現以下錯誤:
scripts/sign-file.c:25:30: fatal error: openssl/opensslv.h: No such file or directory
解決方法:
(1)下載openssl-1.0.1d.tar.gz
- tar xzf openssl-1.0.1d.tar.gz
- cd openssl-1.0.1d/
- ./config shared no-asm --prefix=$PWD/tmp
- 然后打開Makefile
- 搜索install_docs,將這個編譯選項去掉。
- make && make install
- cp ./tmp/include/* /usr/include
- cp ./tmp/lib/* /usr/lib
(2)apt-get upgrade && apt-get update
個人推薦第二種。
再到內核源碼根目錄
- cp /boot/config-xxxxxx-generic
- make -jx (x代表數字2,4,8,表示CPU核心數)
- make modules_install
- make install
- 確認成功后,reboot
內核移植成功。
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內容請查看下面相關鏈接