Home | 簡體中文 | 繁體中文 | 雜文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 作品與服務 | Email

第 2 章 Kernel

摘要

目錄

2.1. 編譯安裝內核
2.2. sysctl - configure kernel parameters at runtime
2.2.1. sysctl.d
2.2.2. vm.overcommit_memory
2.3. /sys
2.3.1. /sys/class/net/
2.4. /proc
2.4.1. 進程內存監控
2.4.2. ulimit 狀態

2.1. 編譯安裝內核

wget -q -c http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.0.1.tar.bz2
tar jxvf linux-3.0.1.tar.bz2

cd linux-3.0.1
make clean
make mrproper
make menuconfig
make
make modules_install
make install
		
comments powered by Disqus