nixCraft → Howto → AIX → How to check running process in Unix using command line How to check running process in Unix using command line

To check the running processes on an AIX system, you can use the ps command. Here’s an example:

 
$ ps -ef

This command will show a list of all the running processes and their status information. The output includes the following columns:

  • UID: the user ID of the owner of the process.
  • PID: the process ID of the process.
  • PPID: the parent process ID of the process.
  • C: the CPU utilization of the process.
  • STIME: the start time of the process.
  • TTY: the terminal associated with the process.
  • TIME: the cumulative CPU time used by the process.
  • CMD: the name of the command used to start the process.

There are many options available with the ps command on AIX, so you can customize the output to show only the information you need.

Leave a Comment