Tagged Questions
1
vote
1answer
311 views
htop reporting much higher memory usage than free or top
The following three outputs were taken essentially simultaneously:
top:
top - 02:54:36 up 2 days, 13:50, 3 users, load average: 0.05, 0.05, 0.09
Tasks: 181 total, 1 running, 179 sleeping, 0 ...
2
votes
3answers
292 views
Killing a tree of processes in top/htop
htop allows me to nicely see trees of processes within the shell. I can kill processes by pressing F9 (KILL) and then selecting which signal (e.g. 15 SIGTERM) I want to send to a job to kill.
...
4
votes
1answer
318 views
top / htop; group process by command
I'd like to know how much resource a specific command is using.
top and htop displays information on per process basis but I'd like the information to be shown on per command basis. E.g. I'd like to ...
10
votes
1answer
684 views
Meaning of colours in htop
Given the option:
[ ] Detailed CPU time (System/IO-Wait/Hard-IRQ/Soft-IRQ/Steal/Guest)
In htop (Version 1.0.1) what are the meanings of the colours?
In the following image, I'm seeing rather a lot ...
4
votes
3answers
385 views
why does htop meter show >90% while table is 0.0%?
Why do the progress meters across the top of the screen in htop show CPU usage consistently above >90% while the numbers in the table below show a nearly idle system with CPU usage and load average at ...
8
votes
3answers
2k views
How can I receive top-like CPU statistics from the shell?
I'm trying to get an accurate read of my used CPU (in percent) from top. This is the command I'm running for testing:
top -n1 | awk '/Cpu\(s\):/ {print $2}'
This returns:
10.7%us,
Which is the ...