Memory Analysis on Ubuntu

A few useful command line script to show you how to run memory analysis on Ubuntu

script ranks memory usage from high to low

ps aux | sort -rnk 4 | head -5
ps aux | head -1; ps aux | sort -rnk 4 | head -5
top
top -U [username]
ps aux | head -1; ps aux | grep ^[username]| sort -rnk 4 | more

if you want latest update and find more tips and tricks to build your own business platform, please checkout more articles on https://www.productdeploy.com and https://blog.productdeploy.com

Share This

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*
*