Monthly Archives: August 2014

Solaris Live Network Bandwidth Monitoring

When doing performance analysis the current network throughput is often interesting. The following nice script display that – even without any root permissions. #!/bin/sh # usage: netvolmon DEV [INTERVAL] DEV=$1 IVAL=${2:-5} getrxtx() { kstat -p “*:*:$1:*bytes64” | awk ‘{print $2}’ … Continue reading

Posted in Oracle in general | Leave a comment