查看linux swap分区使用情况
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash

·
#!/bin/bash
#
function
getswap {
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




A beautiful web dashboard for Linux
最近提交(Master分支:19 天前 )
186a802e
added ecosystem file for PM2 5 年前
5def40a3
Add host customization support for the NodeJS version 5 年前
更多推荐
所有评论(0)