红联Linux门户
Linux帮助

FC4 下编译Linux内核+perfctr

发布时间:2006-08-07 12:56:43来源:红联作者:厉烨
1.得到内核并解压

#bunzip2 linux-2.6.11.tar.bz2
#tar xf linux-2.6.11.tar

2.

#cd linux-2.6.11
#make mrproper

3.设$PDIR为perfctr的解压目录

#$PDIR/update-kernel

4.拷贝现有的.config

# cp /usr/src/kernels/2.6.11-1.1369_FC4-i686/.config .

5.配置.config

#make xconfig
在弹出的界面中选上Performance monitoring counters support (PERFCTR)这一项

6.修改Makefile

加上扩展版本号:

EXTRAVERSION =perfctr

7.编译kernel

#make dep vmlinux modules


8.安装kernel

#make modules_install
#make install

9.重新启动,选择新内核启动

#reboot

10.编译安装perfctr

#cd $PDIR
#make
#mknod /dev/perfctr c 10 108
#chmod 644 /dev/perfctr
#make PREFIX=/usr/local install

至此,安装全部完成,你可以使用perfctr计时了,可以运行perfctr带的测试程序测试安装是否成功。
文章评论

共有 2 条评论

  1. 0.0.0.* 于 2006-11-24 12:45:57发表:

    请问那个测试程序在哪个目录下啊
    怎么用的

  2. machonghao 于 2006-08-08 01:11:10发表:

    不错,正需要.