Gentoo安裝詳解(二) 編譯核心

2021-06-28 16:46:26 字數 1082 閱讀 5452

選擇核心:如gentoo-sources

emerge gentoo-sources

ls -l /usr/src/linux

cd /usr/src/linux

make menuconfig

顯示卡:xorg/configuration

音效卡:alsa

網絡卡:根據具體網絡卡晶元型號,檢視wiki。

無線網絡卡晶元驅動查詢:linux wireless

其他選項根據需要新增,不了解保持預設即可.

make && make modules_install
cp arch/x86_64/boot/bzimage /boot/kernel-3.10.10-gentoo

或make install

#使用make install

this will copy the kernel image into /boot together with the system.map file and the kernel configuration file.

emerge genkernel
zcat /proc/config.gz > /usr/share

/genkernel/arch

/x86_64/kernel-config

genkernel--

menuconfig

all

一旦genkernel執行完成,乙個包括全部模組和initrd的核心將被建立。在後面配置引導程式時我們將會用到這個核心和initrd。請記下核心和initrd的名字,因為您將在配置引導程式的時候用到他們(grub legacy使用)。initrd將會在啟動真正的系統前自動識別硬體(如同安裝光碟一樣)。

ls /boot/kernel* /boot/initramfs*

suse 核心編譯安裝 Linux核心編譯與安裝

操作環境 rhel 5.1 一 準備工作 2 解壓縮核心檔案,進入解壓後核心源 目錄,切換至root使用者 tar xzvf linux 2.6.39.4.tar.bz2 cd mnt hgfs linux 2.6.39.4 su root 二 核心編譯 make distclean 4 核心配置 ...

Linux核心編譯安裝和解除安裝核心

linux開行版的自帶核心不一定能滿足linux學習和某些特殊的要求,這時我們就不得不根據自己的需求重新安裝核心。這裡我介紹一些常用編譯核心的步驟。核心編譯安裝 p.s.學習最新的核心,可以轉殖linus在github的 二 選擇核心配置 p.s.選擇預設選項的話 make defconfig。p....

Linux核心編譯與安裝

操作環境 rhel 5.1 一 準備工作 1 獲取核心 2 解壓縮核心檔案,進入解壓後核心源 目錄,切換至root使用者 tar xzvf linux 2.6.39.4.tar.bz2 cd mnt hgfs linux 2.6.39.4 su root 二 核心編譯 make distclean ...