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 |
No comments:
Post a Comment