TranslateProject/sources/tech/20180409 Yet Another TUI Graphical Activity Monitor, Written In Go.md

4.0 KiB
Raw Blame History

Yet Another TUI Graphical Activity Monitor, Written In Go

You already know about “top” command, dont you? Yes, It provides dynamic real-time information about running processes in any Unix-like operating systems. A few developers have built graphical front-ends for top command, so the users can easily find out their systems activity in a graphical window. One of them is Gotop. As the name implies, Gotop is a TUI graphical activity monitor, written in Go language. It is completely free, open source and inspired by gtop and vtop programs.

In this brief guide, we are going to discuss how to install and use Gotop program to monitor a Linux systems activity.

Installing Gotop

Gotop is written using Go, so we need to install it first. To install Go programming language in Linux, refer the following guide.

After installing Go, download the latest Gotop binary using the following command.

$ sh -c "$(curl https://raw.githubusercontent.com/cjbassi/gotop/master/download.sh)"

And, then move the downloaded binary to your $PATH, for example /usr/local/bin/.

$ cp gotop /usr/local/bin

Finally, make it executable using command:

$ chmod +x /usr/local/bin/gotop

If youre using Arch-based systems, Gotop is available in AUR , so you can install it using any AUR helper programs.

Using Cower:

$ cower -S gotop

Using Pacaur:

$ pacaur -S gotop

Using Packer:

$ packer -S gotop

Using Trizen:

$ trizen -S gotop

Using Yay:

$ yay -S gotop

Using yaourt:

$ yaourt -S gotop

Usage

Gotop usage is easy! All you have to do is to run the following command from the Terminal.

$ gotop

There you go! You will see the usage of your systems CPU, disk, memory, network, cpu temperature and process list in a simple TUI window.

To show only CPU, Mem and Process widgets, use -m flag like below.

$ gotop -m

You can sort the process table by using the following keyboard shortcuts.

  • c CPU
  • m Mem
  • p PID

For process navigation, use the following keys.

  • UP/DOWN arrows or j/k keys to go up and down.
  • Ctrl-d and Ctrl-u up and down half a page.
  • Ctrl-f and Ctrl-b up and down a full page.
  • gg and G iump to top and bottom.

Press < TAB> to toggle process grouping. To kill the selected process or process group, type dd. To select a process, just click on it. To scroll down/up, use the mouse scroll button. To zoom in and zoom out CPU and memory graphs, use h and l. To display the help menu at anytime, just press ?.

Recommended read:

And, thats all for now. Hope this helps. More good stuffs to come. Stay tuned!


via: https://www.ostechnix.com/gotop-yet-another-tui-graphical-activity-monitor-written-in-go/

作者:SK 译者:译者ID 校对:校对者ID 选题:lujun9972

本文由 LCTT 原创编译,Linux中国 荣誉推出