TranslateProject/sources/Unbelievable ! 30 Linux TOP Command Examples With Screenshots.md

12 KiB
Raw Blame History

Unbelievable ! 30 Linux TOP Command Examples With Screenshots

The top command in Linux displays the running processes on the system. One of the most important tools for a system administrator. It is used extensively for monitoring the load on a server. In this article, we explore the top command in detail. The top command is an interactive command. Many commands are available when top is running. We will explore these commands as well.

1. Top Command output:

First of all, let us understand what the output says. Top command displays a lot of information about the running system. But we need to under stand the meaning of different sections of this output: Running by default, the top command displays output like this:

Top default display

First few lines are horizontal showing summary about different system parameters, and following these are the processes and their attributes in columns.

1.1 Uptime and Load Averages:

Uptime display

At the top of top command is displayed the output similar to uptime command.

The fields display:

  • current time
  • the time your system is been up
  • number of users logged in
  • load average of 5, 10 and 15 minutes respectively.

This uptime display can be toggled with l command.

1.2 Tasks:

Task summary

The second line shows summary of tasks or processes. The processes can be in different states. It shows total number of the processes. Out of these, the processes can be running, sleeping, stopped or in zombie (zombie is the state of a process state, These process summary can be toggled with t command.

1.3 CPU States:

CPU status display

Next is shown the CPU state. Here, %age of CPU time in different modes is shown. The meaning of different CPU times are:

  • us, user: CPU time in running (un-niced) user processes
  • sy, system: CPU time in running kernel processes
  • ni, niced: CPU time in running niced user processes
  • wa, IO wait: CPU time waiting for IO completion
  • hi: CPU time serving hardware interrupts
  • si: CPU time serving software interrupts
  • st: CPU time stolen for this vm by the hipervisor.

This can be toggled with t command.

1.4 Memory Usage:

Memory usage

Next two lines show memory usage, somewhat like free command. 1st of these lines is for physical memory and the second for virtual memory (swap space).

The physical memory is displayed as: total available memory, used memory, free memory, and memory used for buffers Similarly, swap reflects: total, used, free and cached swap space. The memory can be toggled with m command.

1.5 Fields/Columns:

Top columns

After these horizontal system properties and states, the processes are shown in columns. The different columns represent different properties discussed below.

By default, top shows these attributes associated with processes:

PID The Process ID, to uniquely identify a processes.

USER The effective user name of the owner of the processes.

PR The scheduling priority of the process. Some values in this field are rt. It means that the process is running under real-time.

NI The nice value of the process. Lower values mean higher priority.

VIRT The amount of virtual memory used by the process.

RES The resident memory size. Resident memory is the amount of non-swapped physical memory a task is using.

SHR SHR is the shared memory used by the process.

S This is the process status. It can have one of the following values:

  • D uninterruptible sleep
  • R running
  • S sleeping
  • T traced or stopped
  • Z zombie

%CPU It is the percentage of CPU time the task has used since last update.

%MEM Percentage of available physical memory used by the process.

TIME+ The total CPU time the task has used since it started, with precision upto hundredth of a second.

COMMAND The command which was used to start the process.

There are many other outputs which are not displayed by default which can display information about page faults, effective group and group ID of the process, and many more.

2. Interactive Commands:

We discussed earlier that the top command is interactive commands. Some of the commands we encountered in the last section. Here we explore these commands further.

2.1 h: Help

First of all, you can press h or ? to display the help menu for interactive commands.

Help options

2.2 or : Refresh Display

The top command by default refreshes after a certain interval (3 seconds). To refresh manually, user can press enter or space key.

2.3 A: Toggle Alternate Display Mode

This command switches between full-screen Mode and alternate-display mode. In alternate display mode, 4 windows are available:

  1. Def
  2. Job
  3. Mem
  4. Usr

Each of the 4 field groups has a unique separately configurable summary area and its own configurable task area. Only one of these 4 windows will be the current window. The current window is displayed on the top left corner.

Alternative display mode

You can switch between 4 windows with a and w keys. a moves to next and w to previous window. With g command, you can enter a number to select the current window.

Window selection in alternative display

2.4 B: Toggle Bold Display

Some important information is shown in bold characters. This command toggles use of bold.

Bold off

2.5 d or s: Set Display Time interval

When d or s is pressed, you will be prompted to enter a value ( in seconds ) which will be set as display interval. If you enter 1 here, top will refresh every second.

Display time interval

2.6 l, t, m: Toggle Load, Task, Memory Info

These will toggle load average, task/cpu status and mem info respectively as discussed.

Load average off

CPU summary off

Memory and swap usage off

All three displays off

2.7 f: Field Management

This is used to chose what field you want to display on the output screen. The fields marked as * are selected.

Managing columns

< and > The < command moves the sorted field to the left and > to the right

2.8 R: Reverse Sort

Toggle Reverse/Normal sort order

2.9 c: Toggle Command

Toggle full path of command that started the process and program name.

Full command path

2.10 i: Idle Tasks

Toggle idle tasks.

Idle task display off

2.11 V: Forest View

Toggle forest view mode.

Forest view of tasks

2.12 Z: Change color map

Pressing the Z key takes the user to a screen where the display color can be changed for top command. There are 8 task areas to chose from and 8 colors.

Customizing colors

The below screen shows full colored top view with all 4 screens on.

Colored display

2.13 z: Toggle Color

Toggle color, i.e. turn on or off the colored display.

2.14 x or y

Toggle highlights: x sort field; y running tasks. Depending upon your display settings, You might have to make the output colored in order to notice these highlights.

X and Y highlighted

2.15 u: Processes of a User

Show processes for a particular user. You are prompted to enter the username. Blank will show for all users.

Processes of 'raghu' user

2.16 n or #: Number of tasks

Set maximum number of tasks displayed.

Setting number of tasks displayed

2.17 k: Kill tasks

One of the most important commands of top. Used to send signals to tasks (Usually kill tasks).

Killing a task

2.18 r: Renice

Renice a task to change the scheduling priority.

3. Command line options:

Most of these command line options are similar to the commands discussed above. Top output can be manipulated interactively with commands. But you can start top with some parameters set to your convenience with these options.

3.1 -b: Batch mode

The -b option starts top command in batch mode. It can be useful when you want to save the output in a file.

3.2 -c: Command/Program-name toggle:

As discussed in the above commands, this option will toggle from the last remembered state of command/program name display.

3.3 -d: Set delay interval

Set the delay interval for top (in seconds). For example:

$ top -d 1 

will start the top command with 1 sec delay interval.

3.4 -i: idle process toggle

This option sets the top command with last remembered i state reversed.

3.5 -n: Set number of iterations

With -n option, you can set the number of iterations after which top willl end.

$ top -n 3 

will exit top automatically after 3 outputs.

3.6 -p: monitor specific PIDs

You can specify what PIDs you want to monitor with -p option. PID value 0 will be treated as process ID of top command itself.

3.7 -u or -U: username or UID

The process of a particular user can be viewed with these options. Username or UID can be specified to the option. The -p, -u and -U options are mutually exclusive. Only one of the options can be used at a time. You get error when you try to use any combination of these options:

$ top -p 28453 -u raghu
top: conflicting process selections (U/p/u) 

via: http://linoxide.com/linux-command/linux-top-command-examples-screenshots/

译者:译者ID 校对:校对者ID

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