Chrome total memory usage in Fedora

To find out Google Chrome’s total (quite heavy) memory usage in Fedora u can use this command on the terminal

ps axv | grep chrome | awk '{sum+=$9} END {print sum}'

It basically sums up memory usage (in percent), filters and adds using awk to display final result as something like this 11.8

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.