Chinaunix首页 | 论坛 | 博客
  • 博客访问: 229480
  • 博文数量: 32
  • 博客积分: 2318
  • 博客等级: 大尉
  • 技术积分: 298
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-14 01:07
个人简介

新博客: http://qinchuan.me

文章分类
文章存档

2012年(2)

2011年(7)

2010年(6)

2009年(8)

2008年(9)

分类: LINUX

2011-08-11 22:22:45

Step 1. Getting the kernel source code

wget bz2

Step 2. Uncompressing and untaring

tar xjvf linux-2.6.34.10.tar.bz2

Step 3. Configuring the kernel

cd linux-2.6.34.10
make menuconfig

Note: make sure you choose ext4 ext2 and set CONFIG_DEVTMPFS=y 

Step 4. Compiling the kernel

make 
make modules

Step 5. Installing the kernel

sudo make install 
sudo make modules_install

Step 6. Making an initrd image

cd /boot
sudo mkinitramfs -o initrd.img-2.6.34.10 2.6.34.10

Step 7. Grub2 configuration

sudo update-grub

Step 8. Rebooting your system

sudo reboot
阅读(1799) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~