commit | 2e3c35d66d7fbc91bf754b345c8ea3d4f2f36f7d | [log] [download] |
---|---|---|
author | Kang-Che Sung (宋岡哲) <Explorer09@gmail.com> | Fri Mar 16 22:31:48 2018 +0800 |
committer | Hisham Muhammad <hisham@gobolinux.org> | Fri Mar 16 11:31:48 2018 -0300 |
tree | e6a8b23828728f6e6744b24dc32d7ae83557b734 | |
parent | 697f5bb9c14a89b2e04519c956fc7e455c9b1cc0 [diff] |
Use AM_CFLAGS and AM_LDFLAGS in Makefile.am (#760) This reduces generated Makefile.in size by 74%. (217319 bytes -> 56326 bytes) Automake considers that <prog>_CFLAGS and <prog>_LDFLAGS are program-specific build rules, and when such are specified, Automake will generate additional code just to avoid the "generic" and package-wide AM_CFLAGS or AM_LDFLAGS. (Especially for <prog>_CFLAGS, Automake will rename generated object files to become "prog-foo.o" and such, and it's _a lot_ of code to achieve this in Makefile.) There's no reason for htop to rename intermediate object files. It's better to make things simpler. Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
by Hisham Muhammad hisham@gobolinux.org (2004 - 2016)
This is htop
, an interactive process viewer. It requires ncurses
. It is developed primarily on Linux, but we also have code for running under FreeBSD and Mac OS X (help and testing are wanted for these platforms!)
This software has evolved considerably over the years, and is reasonably complete, but there is always room for improvement.
htop
and classic top
htop
you can scroll the list vertically and horizontally to see all processes and full command lines.top
you are subject to a delay for each unassigned key you press (especially annoying when multi-key escape sequences are triggered by accident).htop
starts faster (top
seems to collect data for a while before displaying anything).htop
you don't need to type the process number to kill a process, in top
you do.htop
you don't need to type the process number or the priority value to renice a process, in top
you do.htop
you can kill multiple processes at once.top
is older, hence, more tested.This program is distributed as a standard autotools-based package. See the INSTALL file for detailed instructions.
When compiling from a release tarball, run:
./configure && make
For compiling sources downloaded from the Git repository, run:
./autogen.sh && ./configure && make
By default make install
will install into /usr/local
, for changing the path use ./configure --prefix=/some/path
.
See the manual page (man htop
) or the on-line help (‘F1’ or ‘h’ inside htop
) for a list of supported key commands.
If not all keys work check your curses configuration.
GNU General Public License, version 2 (GPL-2.0)