I'm not in front of an AIX server at the moment, but `vmstat -v` or `vmstat -s`; one of that will show you computational pages in use, although it is a total and not broken down by processes. For that you would need svmon that you mentioned. topas will also show computational and persistent...
This chart may help you understand how PPs are used to calculate the filesystem size. I have a hard copy and I also created a C program to calculate the same data.
GB MB KB 512byte 4MB PP 8MB PP 16MB PP 32MB PP 64MB PP 128MB PP
0.125 128 131072 262144 32 16 8 4 2 1
0.25 256 262144 524288 64...
Hyperbole.
Why does it seem everyone thinks Linux is the best and only operating system on the planet? Linux is horrible.
At work we have AIX, Solaris, HP-UX, and of course, RHEL. The only servers that cause problems are the RHEL on i686. There have only been a couple of AIX servers that...
I know this is in the scripting forum, but Perl is an alternative solution using Find::File like so in my example usage:
#!/usr/bin/perl
use File::Find;
sub findit {
my @files = ();
my @dirs = ();
open DF,"df -k | grep -v ':/' | awk '{print $6}' | tail +2l|" or die;
while(<DF>){...
#!/usr/bin/perl
use strict;
use File::Find;
if ($ARGV[0] eq "") { $ARGV[0]="."; }
my @file_list;
find ( sub {
my $file = $File::Find::name;
if ( -f $file ) {
push (@file_list, $file)
}
}, @ARGV);
my $now = time();
my $AGE = 60*60*24*7;
for my $file (@file_list) {
my...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.