ba6.us - Dave's Database Related Stuff

  • home
  • blog
  • notebooks
  • projects
  • recent
  • about
  • manifesto
  • !
Home

Tag Cloud

apex Application Express Auditing data dbi development export funnies HTML Java linux monitoring oem oracle performance perl rman scripting sql SQL Developer sqlplus tuning unix windows
more tags

Search

RSS Feed

Blog Posts :

Navigation

  • Feed aggregator

User login

  • Request new password

Operating System Monitoring

dmann — Fri, 10/03/2008 - 16:20

Solaris

$ /usr/sbin/prtconf |grep -i "Memory size"
$ swap -s
$ df -k
$ /usr/local/bin/top
$ vmstat 5 100
$ sar -u 2 100
$ iostat -D 2 100
$ mpstat 5 100

#Solaris: Total Memory Size:
/usr/sbin/prtconf 2>&1 | grep -i "Memory size" | awk '{print $3" mb"}'
#Solaris: Free Memory size:
vmstat 2 2 | tail -1 | awk '{print $5/1024" mb"}'

ps -ef | grep smon | grep -v grep

HP-UX 11.0

$ grep Physical /var/adm/syslog/syslog.log
$ df -k
$ sar -w 2 100 
$ sar -u 2 100
$ /bin/top
$ vmstat -n 5 100
$ iostat 2 100
$ top

AIX

$ /usr/sbin/lsattr -E -l sys0 -a realmem
$ /usr/sbin/lsps -s
$ vmstat 5 100
$ iostat 2 100
$ /usr/local/bin/top # May not be installed by default in the server

Linux [RedHat 7.1 and RedHat AS 2.1]

$ dmesg | grep Memory
$ vmstat 5 100
$ /usr/bin/top
Graphically:
gnome-system-monitor & 

References:

Note:1016233.6
  • Printer-friendly version
  • Add new comment


Cornify
  • home
  • blog
  • notebooks
  • projects
  • recent
  • about
  • manifesto
  • !

Content Copyright 2006-2010. Links are copyright of respective owners.