Topic: Bootchart in Statler
I just spent some time getting bootchart working in Statler. It's not at all the easy procedure it is under Ubuntu.
First you have to install the bootchart deb. The files for debian are linked from the Bootchart website
http://www.bootchart.org/
(Those files appear under ‘sid’.)
Just install bootchart; ignore bootchart-view unless you’ve already dragged in all the java dependencies.
Next you need to get bootchart invoked during bootup. Unfortunately this involves editing your kernel command line in Grub. At the Grub screen press ‘e’ to edit and add init=/sbin/bootchartd to the end of the line with vmlinuz on it.
When you’re booted and logged in look in /var/log/ - you’ll find a file ‘bootchart.tgz’. It’s not like in Ubuntu where you find all the folders under /var/log/bootchart with the images ready to view - that’s the next part.
If you installed bootchart-view you can just run bootchart -f png
If you didn’t then it’s time to install pybootchartgui - this is a python version of the java program for producing the bootchart images.
Go to the home page on Google Code
http://code.google.com/p/pybootchartgui/
download it and unpack it - I put it in ~/bin/
Open a terminal and run
./pybootchartgui.py /var/log/bootchart.tgz
and you should get a lovely png popping up.
Editing your Grub - in Grub2 it’s more involved than just editing your menu.lst file - and running pybootchartgui on every startup are exercises left to the reader.