Basic Linux Monitoring

July 9, 2011 โ€” Show memory usage:

free -m

Add this to your bash_profile:

alias free="free -m" top

Show all processes

ps -a

Disk free space:

df

View source