Find the most memory consuming process By Unknown September 12, 2017 Execute the following command to get a list of most memory consuming processes: ps aux | awk '{print $6/1024 " MB\t\t" $11}' | sort -n Read more
Find the most memory consuming process By Unknown August 02, 2017 Execute the following command to get a list of most memory consuming processes: ps aux | awk '{print $6/1024 " MB\t\t" $11}' | sort -n Read more
Find the most memory consuming process By Unknown August 01, 2017 Execute the following command to get a list of most memory consuming processes: ps aux | awk '{print $6/1024 " MB\t\t" $11}' | sort -n Read more