Multiple choice technology operating systems

Command to display all running process

  1. ps -aux

  2. ps -u

  3. ps -e

  4. ps

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The ps command with -aux flag displays all running processes. 'a' shows processes for all users, 'u' displays user-oriented format, and 'x' includes processes not controlled by terminals. This is the comprehensive option.