mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
39 lines
642 B
Plaintext
39 lines
642 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# atop
|
|
|
|
> Linux system and process monitor.
|
|
> See also: `htop`, `top`, `btop`, `btm`, `glances`.
|
|
> More information: <https://manned.org/atop>.
|
|
|
|
- Start:
|
|
|
|
`atop`
|
|
|
|
- Start and display memory consumption for each process:
|
|
|
|
`atop -m`
|
|
|
|
- Start and display disk information:
|
|
|
|
`atop -d`
|
|
|
|
- Start and display background process information:
|
|
|
|
`atop -c`
|
|
|
|
- Start and display thread-specific resource utilization information:
|
|
|
|
`atop -y`
|
|
|
|
- Start and display the number of processes for each user:
|
|
|
|
`atop -au`
|
|
|
|
- Display help about interactive commands:
|
|
|
|
`<?>`
|