原系統:centos6.3 核心2.6.32 更新到3.6.9!
不說廢話,直接走個:
1、下載linux-3.6.9核心包 百度,解壓進入
2、核心配置(不要抄襲網路上的使用勾選,勾選會報錯。涉及部分編譯成模組)
# make mrproper #清除環境變數,即清除設定檔
# make menuconfig #在菜單模式下選擇需要編譯的核心模組
找到以下選中選項並選中Networking support → Networking options → Network packet filtering framework(netfilter)
(1)Core netfilter configuration
- 將"Netfilter connection tracking support" 編譯成模組。
- 將netbios name service protocal support(new) 編譯成模組,不然後面升級iptables後啟動時會出錯
- 將"Netfilter Xtables support (required for ip_tables)"編譯成模組
(2)IP: Netfilter Configuration
- 將 "IPv4 connection tracking support (require for NAT)" 編譯成模組。
- 將IP tables support (required for filtering/masq/NAT) 編譯成模組。
- 將 "Full NAT" 下的 "MASQUERADE target support" 和 "REDIRECT target support" 編譯成模組
(3)其它模組可以根據自己的需要進行選擇,若不懂可以參考核心配置手冊.
# make clean #確保所有東西均保持最新狀態.
# make bzImage #產生核心檔案
# make modules #編譯模組
# make modules_install #安裝模組
# make instal#安裝樓 祝你成功
4、編輯 /etc/grub.conf 檔案,將 default=1 改為 default=0
5、reboot
下一步趕緊學習 ext4 檔案系統!