Skip to content

Instantly share code, notes, and snippets.

@davidangel
Last active February 21, 2017 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidangel/cde19265f1adf248d3b273ff0ac424af to your computer and use it in GitHub Desktop.
Save davidangel/cde19265f1adf248d3b273ff0ac424af to your computer and use it in GitHub Desktop.
Useful Linux Commands

Useful Linux Commands

Memory

To see what processes are running on your machine, sorted by their memory usage, run the following command:

ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment