
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
hdmon is a superkaramba theme that displays hard drives temperatures and I/O disks activity for 2.6 kernel. Please read the Readme file.
9 years ago
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.
9 years ago
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.
iten
9 years ago
Report
tkeeler
16 years ago
Any ideas? hda doesn't work either...
Report
iten
16 years ago
Do you have a /sys/block/hda/stat file ?
Report
gladiac
16 years ago
http://www.python.org/
http://netdragon.sourceforge.net/api.html
gladiac
#superkaramba @ irc.freenode.net
Report
iten
16 years ago
But currently, I dont know to use python. Maybe it's time I learn it :)
Report
gladiac
16 years ago
read first 15 sites of the how-to and begin...
if you need thread support
http://heather.cs.ucdavis.edu/~matloff/Python/PyThreads.pdf
Report
iten
16 years ago
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 ) );
}
--------------------------------------
Report
adpsimpson
16 years ago
Report
iten
16 years ago
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
Report
adpsimpson
16 years ago
Report