Junior
What command can display all running processes in a Linux operating system?
sobes.tech AI
Answer from AI
// Displays all running processes (with user, PID, %CPU, %MEM, and command)
ps aux
// Or using another syntax (also displays all processes)
ps -ef