Tags: process
May
18
netstat -an |find /i "listening" netstat -an |find /i "established" netstat -ao |find /i "listening" 1. netstat -aon | findstr "" This shows if the specified is being used. The number in the last column is the process id (PID) of the p… more »
Jul
30
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 »
Recent comments