Showing posts with label process. Show all posts
Showing posts with label process. Show all posts

Sunday, May 12, 2013

Memory utilisation of processes in AIX




For memory information, we use the command svmon.svmon shows the total usage of physical and paging memory.

Command to display top ten processes and userssvmon -P -v -t 10 | moreDisplaying top CPU_consuming processes:ps aux | head -1; ps aux | sort -rn +2Displaying top memory-consuming processes:ps aux | head -1; ps aux | sort -rn +3 | headDisplaying process in order of priority:ps -eakl |