I noticed from the InfoPanel
screenlet that my computer downloading something at high speed. I was not downloading anything and I already ran apt-get upgrade
so there was no apparent reason for my comp to download something. I tried to run some well known network checking commands but they didn't help much since they don't list connections by speed rate:
netstat -A inet -p | grep '^tcp' | grep '/' | sed 's_.*/__' | sort | uniq
ss -tp | grep -v Recv-Q | sed -e 's/.*users:(("//' -e 's/".*$//' | sort | uniq
Is there any tool you know that lists connections by speed rate like command top
does ?
nethogs
was the best one --- but it is not working in my system now. Hmm.... – Rmano Mar 12 '16 at 19:05nethogs
seems to be what I want. It's pity that we have no alternatives. – kenn Mar 12 '16 at 21:13