Archive for category Solaris
Useful Solaris Commands
Nov 8
Solaris commands to monitor and optimize the performance of the system:
1. To find the top 10 largest files on the file system:
du -a /var | sort -n -r | head -n 10
2. Sort the ls command to show the largest files first:
ls -l | sort -nk5
3. Find out the top processes taking up the CPU:
prstat -s cpu
4. Find out the top processes taking up the memory:
prstat -s size
5. Find out the number of mails in the mail queue Read More
