Chinaunix首页 | 论坛 | 博客
  • 博客访问: 676399
  • 博文数量: 156
  • 博客积分: 6010
  • 博客等级: 准将
  • 技术积分: 1201
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-05 20:08
文章分类

全部博文(156)

文章存档

2010年(13)

2008年(39)

2007年(104)

我的朋友

分类: LINUX

2008-07-08 15:36:26

is a tool for performance analysis and visualization of the GNU/Linux boot process. Resource utilization and process information are collected during the boot process and are later rendered in a PNG, SVG or EPS encoded chart.

在 Debian 中,只要 aptitude install bootchart 即可。之后要去修改
/boot/grub/menu.list,在 kernel 的后面加上 init=/sbin/bootchartd,如:
      
title        Debian GNU/Linux, kernel 2.6.24-1-486
root        (hd0,6)
kernel        /boot/vmlinuz-2.6.24-1-486  ro quiet vga=791                   init=/sbin/bootchartd
initrd        /boot/initrd.img-2.6.24-1-486

改好之后重开机,bootchartd 就回去搜集启动过程的数据。接著:
user@debian:~$ bootchart
Parsing /var/log/bootchart.tgz
Wrote image: ./bootchart.svgz
若是用 lenny 里面的版本 (bootchart 0.9-4 -> 0.10~svn405-2)。可以直接:

$ bootchart -f png

产生最后的 bootchart.png。

就可以在目前目录找到一个 bootchart.svgz 档,这是一个 gzip 压缩过的文件,把它改名成 bootchart.svg.gz,然后 gzip -d bootchart.svg.gz,就可以得到 bootchart.svg 档。

再透过 Online SVG to PNG/JPEG/TIFF conversion 这个网站的帮助,就可以帮我们转为
png 档。

从图中可以看到一些系统的信息、开机总共用去的时间,以及启动了哪些 process。

PS:我的系统启动的过程如下:








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