Guys,
I used one bash script to automatically install the htop binary. The binary will show details of the running processes when you execute it on the konsole. Here is the script.
======
#!/bin/bash
cd /usr/local/src/
wget http://citylan.dl.sourceforge.net/project/htop/htop/0.8.3/htop-0.8.3.tar.gz
tar xzvf htop-0.8.3.tar.gz
cd htop-0.8.3
./configure
make
make install
======
That's it. Try :)
Thanks a lot. Very clear instructions........Much appreciated.
ReplyDelete