Swap usage Linux scripts and commands

Swap usage Linux scripts and commands

To see SWAP usage by processes script:

#!/bin/sh

# Get current swap usage for all running processes

# Erik Ljungstrom 27/05/2011

SUM=0

OVERALL=0

for DIR in `find /proc/ -maxdepth 1 -type d | egrep “^/proc/[0-9]”` ; do

PID=`echo $DIR | cut -d / -f 3`

PROGNAME=`ps -p $PID -o comm –no-headers`

for SWAP in `grep Swap $DIR/smaps 2>/dev/null| awk ‘{ print $2 }’`

do

let SUM=$SUM+$SWAP

done

echo “PID=$PID – Swap used: $SUM – ($PROGNAME )”

let OVERALL=$OVERALL+$SUM

SUM=0

done

echo “Overall swap used: $OVERALL”

./getswap.sh | egrep -v “Swap used: 0” |sort -n -k 5

To see free memory and swap space:

free -hm

Top command to calculate swap usage:

top

(SWAP = VIRT – RES)

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s