A technician needs to inspect active running processes and current system resource usage on a Linux computer via the command line. Which of the following utilities can be used to view active processes? (Select TWO.)
- psAnswer
- topAnswer
- Cchmod
- Dchown
Answer
The commands 'ps' and 'top' are both native utilities used to inspect active processes on Unix-like operating systems such as Linux and macOS.
The 'ps' command lists currently running processes in a static snapshot format, whereas the 'top' command dynamically updates and displays running processes along with CPU and memory resource consumption.
Step-by-Step Solution
Key Concept
Linux and macOS Process Inspection Commands