Tags: processes

Solaris OS Processes

Solaris Send feedback »
Every program you run in the Solaris OS creates a process. When you log in and start the shell, you start a process. When you perform a command or when you open an application, you start a process. The system starts processes called daemons. Daemons… more »

Aix: Displaying the top 10 CPU / Memory consuming processes

Technology, Aix Send feedback »
Displaying the top 10 CPU-consuming processes # ps aux | head -1; ps aux | sort -rn +2 | head -10 Displaying number of processors in the system # lsdev -Cc processor Displaying the top 10 CPU-consuming processes # ps aux | head -1 ; ps au… more »