#!/usr/bin/perl
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2005-2010 IPFire Team #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see
$Lang::tr{'size'} | $Lang::tr{'used'} | $Lang::tr{'free'} | $Lang::tr{'percentage'} | END ; }else{ if ($_ =~ m/^Mem:\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)$/){ ($ram,$size,$used,$free,$shared,$buffers,$cached) = ($1,$1,$2,$3,$4,$5,$6); ($percent = ($used/$size)*100) =~ s/^(\d+)(\.\d+)?$/$1%/; print <$Lang::tr{'ram'} | $size KB | END ; }elsif($_ =~ m/^Swap:\s+(\d+)\s+(\d+)\s+(\d+)$/){ ($size,$used,$free) = ($1,$2,$3); if ($size != 0){ ($percent = ($used/$size)*100) =~ s/^(\d+)(\.\d+)?$/$1%/; }else{ ($percent = ''); } print <$Lang::tr{'swap'} | $size KB | END ; }elsif($ram and $_ =~ m/^-\/\+ buffers\/cache:\s+(\d+)\s+(\d+)$/ ){ ($used,$free) = ($1,$2); ($percent = ($used/$ram)*100) =~ s/^(\d+)(\.\d+)?$/$1%/; print "
$Lang::tr{'excluding buffers and cache'} | "; } print <$free KB |
END
;
&percentbar($percent);
print <$percent |
| |
$Lang::tr{'shared'} | $shared KB | |||
$Lang::tr{'buffers'} | $buffers KB | |||
$Lang::tr{'cached'} | $cached KB |