Pages

Friday, February 19, 2010

Important Linux Commands

Find Out The Top 10 Memory Consuming Process

# ps -auxf | sort -nr -k 4 | head -10

Find Out top 10 CPU Consuming Process

# ps -auxf | sort -nr -k 3 | head -10

sar - Collect and Report System Activity

# sar -n DEV | more

To display the network counters from the 24th:
# sar -n DEV -f /var/log/sa/sa24 | more

Manish Kumar Rai
#9899856382



No comments:

Post a Comment