
Disk I/O Activity and Temperatures
Source (link to git-repo or to original if based on someone elses unmodified work):
Version 3
-fix hdmon.c since the /sys/block/sdx/stat file format has changed, so stats were not available anymore
Version 2
-Added hard drives temperatures (see Readme)
-Some little cosmetic improvements
Version 1
-Changed the name.
-Updated the Readme file.
-Improved reactivity.
there is a superkaramba bug when using qt-3.3 with "bars" widget. see Readme file to see how to fix it.
Ratings & Comments
8 Comments
sorry, last update was containing a bug. new package updated.
why don't you write it in python? superkaramba has python support... http://www.python.org/ http://netdragon.sourceforge.net/api.html gladiac #superkaramba @ irc.freenode.net
Yes i know. But currently, I dont know to use python. Maybe it's time I learn it :)
download the python docs and the superkaramba api read first 15 sites of the how-to and begin... if you need thread support http://heather.cs.ucdavis.edu/~matloff/Python/PyThreads.pdf
By the way, there is a qt3.3 superkaramba bug with "bars" widget. The workaround is to edit the superkaramba-0.33/src/bar.cpp and at line 88 add: ----------------- v.remove('\n'); ----------------- like this: -------------------------------------- void Bar::setValue( QString v ) { v.remove('\n'); setValue( (int) (v.toDouble() + 0.5 ) ); } --------------------------------------
...but can you give a little more detail in the readme file about which lines to modify in the theme, or post it here? Thanks
for example: 1. mkdir -p $HOME/utils/superkaramba-themes 2. cp 11814-hdmon.tgz $HOME/utils/superkaramba-themes 3. cd $HOME/utils/superkaramba-themes 4. tar zxvf 11814-hdmon.tgz 5. cd hdmon 6. make 7. edit hdmon.theme and replace all occurences of: ./hdmon with $HOME/utils/superkaramba-themes/hdmon/hdmon (replace in the last sentence $HOME with the explicit path of your home directory, since I'm not sure that superkaramba knows to substitute shell variables ) 8. superkaramba $HOME/utils/superkaramba-themes/hdmon/hdmon.theme
Thanks!