bin/ 0040755 0001755 0000024 00000000000 10104176311 010254 5 ustar djh staff bin/check-Linux 0100755 0001755 0000024 00000005310 10103460735 012355 0 ustar djh staff #!/usr/bin/perl
# Check Load
$loadavg=`/usr/bin/uptime`;
chomp $loadavg;
$loadavg =~ s/.*: //;
$loadavg =~ s/,//g;
$line1="load1 load5 load15";
$line2=$loadavg;
# Check Disks
@df=`df -k`;
for (@df) {
$_ =~ /.*?(\d+)\%\s+(\/\S*)/;
my $dsk = $2; my $per = $1;
if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/dev/shm' ) {
$line1 .= " disk-$dsk";
$line2 .= " $per";
}
}
## Check process count
$numproc=`ps ax | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
$line1 .= " numproc-total";
$line2 .= " $numproc";
## Check process count
$numproc=`ps auxww | awk '\$1 == "httpd" || \$1 == "apache" {print}' | grep -c /httpd`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpd";
$line2 .= " $numproc";
}
## Check process count
#$numproc=`ps auxww | grep -c httpsd\$`;
#chomp $numproc;
#$numproc =~ s/\s+//;
#if( $numproc > 0 ) {
# $line1 .= " numproc-httpsd";
# $line2 .= " $numproc";
#}
## Check process count
$numproc=`ps auxww | awk '\$1 == "mysql" || \$1 == "#27" {print}' | grep -c /mysqld`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-mysqld";
$line2 .= " $numproc";
}
## Sendmail count
$numsuccess=`grep -c 'sendmail.*Sent' /var/log/maillog`;
chomp $numsuccess; $numsuccess =~ s/\s+//;
$numdeferral=`grep -c 'sendmail.*Deferred:' /var/log/maillog`;
chomp $numdeferral; $numdeferral =~ s/\s+//;
#$numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
#chomp $numfailure; $numfailure =~ s/\s+//;
if( $numsuccess > 0 || $numdeferral > 0 ) {
$line1 .= " sendmail-success sendmail-deferral";
$line2 .= " $numsuccess $numdeferral";
}
$numimapd=`grep -c 'imapd.*Login user=' /var/log/maillog`;
chomp $numimapd; $numimapd =~ s/\s+//;
$numpop3d=`grep -c 'POP login by user' /var/log/maillog`;
chomp $numpop3d; $numpop3d =~ s/\s+//;
if( $numimapd > 0 || $numpop3d > 0 ) {
$line1 .= " connect-imapd connect-pop3d";
$line2 .= " $numimapd $numpop3d";
}
##@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`;
##foreach $n (0 .. @mems) { chomp $mems[$n]; }
##$line1 .= " memtotal meminuse vmtotal vminuse";
### Actually, vminuse = vmtotal - vmFREE ;)
##$mems[3] = $mems[2] - $mems[3];
##$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]";
#@mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`;
#foreach $n (0 .. @mems) { chomp $mems[$n]; }
#foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; }
#$line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache";
#$line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]";
# Print out lines
print $line1, "\n";
print $line2, "\n";
bin/check-FreeBSD 0100755 0001755 0000024 00000006245 10100252324 012466 0 ustar djh staff #!/usr/bin/perl
# Check Load
$loadavg=`/sbin/sysctl vm.loadavg`;
chomp $loadavg;
$loadavg =~ s/vm.loadavg: { //;
$loadavg =~ s/ }//;
$line1="load1 load5 load15";
$line2=$loadavg;
# Check Disks
@df=`df -k`;
for (@df) {
$_ =~ /.*?(\d+)\%\s+(\/\S*)/;
my $dsk = $2; my $per = $1;
if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/usr/compat/linux/proc' ) {
$line1 .= " disk-$dsk";
$line2 .= " $per";
}
}
# Check process count
$numproc=`ps ax | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
$line1 .= " numproc-total";
$line2 .= " $numproc";
# Check process count
$numproc=`ps auxww | awk '\$1 == "www" || \$1 == "apache" {print}' | grep httpd | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpd";
$line2 .= " $numproc";
}
# Check process count
$numproc=`ps auxww | awk '\$1 == "www" || \$1 == "psaadm" {print}' | grep httpsd | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpsd";
$line2 .= " $numproc";
}
# Check process count
$numproc=`ps -U mysql | grep mysqld | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-mysqld";
$line2 .= " $numproc";
}
# Qmail count
$numsuccess=`grep qmail:.\*delivery.\*success: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null| wc -l`;
chomp $numsuccess; $numsuccess =~ s/\s+//;
$numdeferral=`grep qmail:.\*delivery.\*deferral: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
chomp $numdeferral; $numdeferral =~ s/\s+//;
$numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
chomp $numfailure; $numfailure =~ s/\s+//;
#if( $numsuccess > 0 || $numdeferral > 0 || $numfailure > 0 ) {
$line1 .= " qmail-success qmail-deferral qmail-failure";
$line2 .= " $numsuccess $numdeferral $numfailure";
#}
$numimapd=`grep "imapd: Connection" /usr/local/psa/var/log/maillog | wc -l`;
chomp $numimapd; $numimapd =~ s/\s+//;
$numpop3d=`grep "pop3d: Connection" /usr/local/psa/var/log/maillog | wc -l`;
chomp $numpop3d; $numpop3d =~ s/\s+//;
if( $numimapd > 0 || $numpop3d > 0 ) {
$line1 .= " connect-imapd connect-pop3d";
$line2 .= " $numimapd $numpop3d";
}
#@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`;
#foreach $n (0 .. @mems) { chomp $mems[$n]; }
#$line1 .= " memtotal meminuse vmtotal vminuse";
## Actually, vminuse = vmtotal - vmFREE ;)
#$mems[3] = $mems[2] - $mems[3];
#$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]";
@mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`;
foreach $n (0 .. @mems) { chomp $mems[$n]; }
foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; }
$line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache";
$line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]";
# Network
@netstat=`netstat -inb`;
for (@netstat) {
my @stat = split(/\s+/, $_);
if( $_ !~ /^lo\d/ && $stat[2] =~ /^$/ ) {
if( $stat[4] > 0 || $stat[6] > 0 ) {
$line1 .= " $stat[0]-Ibytes $stat[0]-Obytes";
$line2 .= " $stat[6] $stat[9]";
}
}
}
# Print out lines
print $line1, "\n";
print $line2, "\n";
bin/install-key 0100755 0001755 0000024 00000000120 10070345225 012430 0 ustar djh staff #!/bin/sh
cat /root/.ssh/pinky.pub | ssh root@$1 "cat >> .ssh/authorized_keys"
bin/install-check-FreeBSD 0100755 0001755 0000024 00000000213 10070346252 014131 0 ustar djh staff #!/bin/sh
ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin
scp -i /root/.ssh/pinky bin/check-FreeBSD root@$1:/usr/local/sc/bin/
bin/install-check-Linux 0100755 0001755 0000024 00000000211 10073563410 014014 0 ustar djh staff #!/bin/sh
ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin
scp -i /root/.ssh/pinky bin/check-Linux root@$1:/usr/local/sc/bin/
data-in/ 0040755 0001755 0000024 00000000000 10146731160 011026 5 ustar djh staff data-in/Linux_staging_200411170405 0100644 0001755 0000024 00000000166 10146621120 015046 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 24 0
data-in/Linux_psa1_200411170405 0100644 0001755 0000024 00000000113 10146621120 014246 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.14 0.28 0.12 4 26 231
data-in/Linux_r1z_200411170405 0100644 0001755 0000024 00000000302 10146621121 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.89 0.93 0.35 84 34 23 126 16 3 1 1 0 2
data-in/Linux_r1m2_200411170405 0100644 0001755 0000024 00000000312 10146621120 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 132 20 3 1606 738 36 997
data-in/Linux_r1m1_200411170405 0100644 0001755 0000024 00000000312 10146621120 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.14 0.16 69 72 29 147 32 3 575 299 18 1708
data-in/Linux_r1a1_200411170405 0100644 0001755 0000024 00000000275 10146621124 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.98 0.98 0.49 83 38 15 341 26 7654 4369 385 35903
data-in/Linux_r1a_200411170405 0100644 0001755 0000024 00000000315 10146621124 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.88 1.52 0.97 91 32 27 186 20 21 5106 4076 85 6856
data-in/Linux_streamguys1_200411170405 0100644 0001755 0000024 00000000223 10146621121 015671 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.44 0.54 0.58 49 60 630 49 8 3 0
data-in/Linux_mnode_200411170405 0100644 0001755 0000024 00000000224 10146621121 014510 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.60 0.89 0.53 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170405 0100644 0001755 0000024 00000000225 10146621120 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.00 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170405 0100644 0001755 0000024 00000000225 10146621121 014756 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.39 0.81 0.90 73 17 837 101 27 3 0
data-in/FreeBSD_mb2_200411170405 0100644 0001755 0000024 00000000000 10146621114 014173 0 ustar djh staff data-in/FreeBSD_r4p_200411170405 0100644 0001755 0000024 00000000611 10146621116 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.03 0.00 9 0 0 2 0 75 10 8 1 6 0 273 1 152 23408640 158674944 232095744 1551421440 140197888 1957971122 1531140749
data-in/FreeBSD_psa4_200411170405 0100644 0001755 0000024 00000000535 10146621121 014375 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 103992784 122644042
data-in/FreeBSD_psa3_200411170405 0100644 0001755 0000024 00000000627 10146621121 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.26 1.28 1.23 21 2 10 28 2 140 34 9 1 12725 23507 7805 2429 67428 4448256 351891456 1101217792 566853632 74022912 1241077552 1455077272
data-in/FreeBSD_psa2_200411170405 0100644 0001755 0000024 00000000631 10146621121 014370 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.15 0.14 13 0 1 34 0 128 69 7 1 13078 17554 56107 500 6167 1335971840 297816064 345042944 110354432 17264640 1811408573 2515647311
data-in/FreeBSD_pinky_200411170405 0100644 0001755 0000024 00000000566 10146621120 014663 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.45 0.59 71 13 31 52 75 310 10 14 4 0 0 12263424 170328064 744775680 72097792 43937792 828846410 3646748722 11 0
data-in/Linux_mb_200411170405 0100644 0001755 0000024 00000000155 10146621120 014006 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.42 0.35 0.14 13 16 80 15 1
data-in/Linux_r1q_200411170405 0100644 0001755 0000024 00000000276 10146621121 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.62 1.85 1.65 89 80 42 153 20 11771 5997 186 29021
data-in/Linux_r1f_200411170405 0100644 0001755 0000024 00000000274 10146621126 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.21 1.25 87 85 46 218 20 8544 12813 15 8672
data-in/Linux_steve_200411170405 0100644 0001755 0000024 00000000113 10146621122 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_hwnode2_200411170405 0100644 0001755 0000024 00000000225 10146621121 014755 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.14 0.09 81 15 767 233 23 4 0
data-in/Linux_mb_200411170410 0100644 0001755 0000024 00000000155 10146621574 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.08 0.23 0.14 13 16 80 15 1
data-in/Linux_staging_200411170410 0100644 0001755 0000024 00000000166 10146621574 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 24 0
data-in/Linux_psa1_200411170410 0100644 0001755 0000024 00000000113 10146621573 014256 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.01 0.10 0.08 4 26 230
data-in/Linux_r1z_200411170410 0100644 0001755 0000024 00000000305 10146621600 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.44 1.72 0.82 84 34 23 125 16 3 19 17 2 24
data-in/Linux_r1q_200411170410 0100644 0001755 0000024 00000000276 10146621577 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.21 1.50 1.54 89 80 42 154 20 11801 6005 187 29079
data-in/Linux_r1m2_200411170410 0100644 0001755 0000024 00000000313 10146621575 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.07 0.08 86 81 34 131 20 3 1674 772 37 1035
data-in/Linux_r1m1_200411170410 0100644 0001755 0000024 00000000312 10146621575 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.12 0.14 69 72 29 146 32 3 593 313 18 1775
data-in/Linux_r1a1_200411170410 0100644 0001755 0000024 00000000263 10146621575 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.57 1.45 0.83 83 34 14 132 19 8 16 0 42
data-in/Linux_r1a_200411170410 0100644 0001755 0000024 00000000315 10146621600 014070 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.29 1.01 91 32 27 183 20 21 5125 4098 85 6882
data-in/Linux_streamguys1_200411170410 0100644 0001755 0000024 00000000223 10146621576 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.68 1.58 1.00 49 60 638 50 8 3 0
data-in/Linux_steve_200411170410 0100644 0001755 0000024 00000000113 10146621576 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_mnode_200411170410 0100644 0001755 0000024 00000000224 10146621576 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.62 1.27 0.78 79 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170410 0100644 0001755 0000024 00000000225 10146621575 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.27 0.11 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170410 0100644 0001755 0000024 00000000224 10146621574 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.82 0.99 0.96 73 17 790 95 27 3 0
data-in/Linux_hwnode2_200411170410 0100644 0001755 0000024 00000000225 10146621576 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.17 0.11 81 15 763 233 23 4 0
data-in/FreeBSD_mb2_200411170410 0100644 0001755 0000024 00000000000 10146621571 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170410 0100644 0001755 0000024 00000000611 10146621574 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 155 22224896 158752768 233254912 1551368192 140197888 1958350765 1535658827
data-in/FreeBSD_psa4_200411170410 0100644 0001755 0000024 00000000535 10146621575 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 104001544 122652446
data-in/FreeBSD_psa3_200411170410 0100644 0001755 0000024 00000000627 10146621575 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.07 1.20 1.20 21 2 10 28 2 133 31 9 1 12763 23619 7827 2429 67551 4939776 315334656 1098469376 595861504 83832832 1242721164 1462627690
data-in/FreeBSD_psa2_200411170410 0100644 0001755 0000024 00000000631 10146621574 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.07 0.09 13 0 1 34 0 131 69 7 1 13110 17617 56212 500 6175 1330176000 298717184 346738688 115781632 15036416 1818125688 2586862393
data-in/FreeBSD_pinky_200411170410 0100644 0001755 0000024 00000000566 10146621575 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.40 0.55 71 13 31 52 75 308 10 14 4 0 0 12337152 170213376 747352064 74117120 39383040 834042194 3652072719 11 0
data-in/Linux_r1f_200411170410 0100644 0001755 0000024 00000000274 10146621607 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.16 1.20 1.24 87 85 46 214 20 8563 12874 15 8675
data-in/Linux_mb_200411170415 0100644 0001755 0000024 00000000155 10146622250 014014 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.09 0.09 13 16 86 15 1
data-in/Linux_staging_200411170415 0100644 0001755 0000024 00000000166 10146622247 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 24 0
data-in/Linux_psa1_200411170415 0100644 0001755 0000024 00000000113 10146622250 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.03 0.05 4 26 226
data-in/Linux_r1z_200411170415 0100644 0001755 0000024 00000000305 10146622251 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.36 2.08 1.22 84 34 23 140 31 3 27 29 2 47
data-in/Linux_r1q_200411170415 0100644 0001755 0000024 00000000276 10146622254 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.33 1.44 89 80 42 155 20 11840 6026 187 29128
data-in/Linux_r1m2_200411170415 0100644 0001755 0000024 00000000313 10146622251 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.13 0.09 86 81 34 139 20 3 1743 826 38 1078
data-in/Linux_r1m1_200411170415 0100644 0001755 0000024 00000000312 10146622252 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.19 0.17 69 73 29 162 32 3 610 328 18 1855
data-in/Linux_r1f_200411170415 0100644 0001755 0000024 00000000274 10146622255 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.18 1.18 1.21 87 85 46 214 20 8576 12937 15 8682
data-in/Linux_r1a1_200411170415 0100644 0001755 0000024 00000000265 10146622252 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.01 2.24 1.33 83 34 14 145 26 29 30 1 122
data-in/Linux_r1a_200411170415 0100644 0001755 0000024 00000000315 10146622252 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.23 1.05 91 32 27 183 20 21 5140 4109 86 6907
data-in/Linux_streamguys1_200411170415 0100644 0001755 0000024 00000000223 10146622252 015700 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.64 1.17 0.98 49 60 629 50 8 3 0
data-in/Linux_steve_200411170415 0100644 0001755 0000024 00000000113 10146622252 014540 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2364
data-in/Linux_mnode_200411170415 0100644 0001755 0000024 00000000224 10146622251 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.70 0.67 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170415 0100644 0001755 0000024 00000000225 10146622251 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.09 0.07 19 52 502 141 15 3 0
data-in/Linux_hwnode3_200411170415 0100644 0001755 0000024 00000000224 10146622250 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.93 1.17 1.07 73 17 784 95 27 3 0
data-in/FreeBSD_mb2_200411170415 0100644 0001755 0000024 00000000000 10146622244 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170415 0100644 0001755 0000024 00000000611 10146622247 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 160 22220800 158756864 233254912 1551368192 140197888 1958520667 1537599977
data-in/FreeBSD_psa4_200411170415 0100644 0001755 0000024 00000000535 10146622251 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104031847 122665396
data-in/FreeBSD_psa3_200411170415 0100644 0001755 0000024 00000000627 10146622270 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.50 1.31 1.23 21 2 10 28 2 143 32 9 1 12801 23769 7899 2429 67697 3489792 322084864 1105661952 568643584 98553856 1244733356 1470938076
data-in/FreeBSD_psa2_200411170415 0100644 0001755 0000024 00000000631 10146622250 014375 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.45 0.20 0.12 13 0 1 34 0 127 69 7 1 13148 17671 56308 500 6185 1312636928 303824896 351272960 126717952 11997184 1825379107 2658160146
data-in/FreeBSD_pinky_200411170415 0100644 0001755 0000024 00000000565 10146622251 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
1.86 0.80 0.69 71 13 31 52 75 312 10 14 4 0 0 7413760 171368448 744869888 81424384 38326272 844890795 3657596052 11 0
data-in/Linux_hwnode2_200411170415 0100644 0001755 0000024 00000000225 10146622252 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.15 0.10 81 15 771 233 23 4 0
data-in/Linux_mb_200411170420 0100644 0001755 0000024 00000000155 10146622725 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.03 0.07 13 16 79 15 1
data-in/Linux_staging_200411170420 0100644 0001755 0000024 00000000166 10146622724 015056 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.62 0.17 0.06 8 100 118 26 0
data-in/Linux_psa1_200411170420 0100644 0001755 0000024 00000000113 10146622722 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.03 0.03 4 26 237
data-in/Linux_r1z_200411170420 0100644 0001755 0000024 00000000305 10146622727 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.85 2.78 1.73 84 35 23 131 25 3 45 40 2 71
data-in/Linux_r1q_200411170420 0100644 0001755 0000024 00000000276 10146622730 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.92 1.97 1.70 89 80 42 153 20 11864 6037 187 29188
data-in/Linux_r1m2_200411170420 0100644 0001755 0000024 00000000313 10146622725 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.10 0.08 86 81 34 133 20 3 1809 871 41 1112
data-in/Linux_r1m1_200411170420 0100644 0001755 0000024 00000000312 10146622726 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.24 0.20 69 73 29 152 32 3 635 332 18 1928
data-in/Linux_r1f_200411170420 0100644 0001755 0000024 00000000274 10146622732 014111 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.20 1.21 87 85 46 210 20 8599 12974 15 8685
data-in/Linux_r1a1_200411170420 0100644 0001755 0000024 00000000265 10146622726 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.07 2.81 1.83 83 35 14 140 27 48 38 1 202
data-in/Linux_r1a_200411170420 0100644 0001755 0000024 00000000315 10146622731 014077 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.39 1.15 91 32 27 184 20 21 5147 4136 86 6935
data-in/Linux_streamguys1_200411170420 0100644 0001755 0000024 00000000223 10146622726 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.59 0.76 49 60 630 51 8 3 0
data-in/Linux_steve_200411170420 0100644 0001755 0000024 00000000113 10146622726 014542 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2368
data-in/Linux_mnode_200411170420 0100644 0001755 0000024 00000000224 10146622724 014517 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.51 0.59 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170420 0100644 0001755 0000024 00000000225 10146622725 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.07 0.06 19 52 507 141 15 3 0
data-in/Linux_hwnode3_200411170420 0100644 0001755 0000024 00000000225 10146622725 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 1.25 1.13 73 17 793 100 27 3 0
data-in/Linux_hwnode2_200411170420 0100644 0001755 0000024 00000000225 10146622725 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.05 0.07 81 15 774 234 23 4 0
data-in/FreeBSD_mb2_200411170420 0100644 0001755 0000024 00000000000 10146622721 014175 0 ustar djh staff data-in/FreeBSD_r4p_200411170420 0100644 0001755 0000024 00000000611 10146622723 014234 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 163 22855680 158765056 232611840 1551368192 140197888 1958783300 1540151622
data-in/FreeBSD_psa4_200411170420 0100644 0001755 0000024 00000000535 10146622725 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104039590 122672266
data-in/FreeBSD_psa3_200411170420 0100644 0001755 0000024 00000000627 10146622727 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.69 1.49 1.33 21 2 10 29 2 153 32 9 1 12853 23893 7997 2433 67824 6656000 354484224 1092177920 568291328 76824576 1247058171 1476657447
data-in/FreeBSD_psa2_200411170420 0100644 0001755 0000024 00000000630 10146622725 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.17 0.18 0.12 13 0 1 34 0 145 66 7 1 13164 17762 56330 500 6193 926736384 307896320 337080320 522756096 11980800 1832338375 2751033160
data-in/FreeBSD_pinky_200411170420 0100644 0001755 0000024 00000000566 10146622725 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.45 0.56 71 13 31 52 75 311 10 14 4 0 0 17022976 170762240 744624128 78102528 32890880 855900232 3663202465 11 0
data-in/Linux_mnode_200411170425 0100644 0001755 0000024 00000000224 10146623400 014514 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.39 0.51 78 47 138 38 1 12 0
data-in/Linux_mb_200411170425 0100644 0001755 0000024 00000000155 10146623376 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.01 0.04 13 16 81 15 1
data-in/Linux_staging_200411170425 0100644 0001755 0000024 00000000166 10146623377 015070 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.05 0.72 0.32 8 100 119 26 0
data-in/Linux_psa1_200411170425 0100644 0001755 0000024 00000000113 10146623400 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.01 4 26 237
data-in/Linux_r1z_200411170425 0100644 0001755 0000024 00000000305 10146623400 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.63 2.56 1.91 84 35 23 122 16 3 57 57 2 94
data-in/Linux_r1q_200411170425 0100644 0001755 0000024 00000000276 10146623402 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 1.97 1.73 89 80 42 183 22 11887 6049 188 29247
data-in/Linux_r1m2_200411170425 0100644 0001755 0000024 00000000313 10146623400 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.04 0.06 86 81 34 133 20 3 1876 913 41 1157
data-in/Linux_r1m1_200411170425 0100644 0001755 0000024 00000000312 10146623400 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.12 0.15 69 73 29 151 32 3 659 344 18 2005
data-in/Linux_r1a1_200411170425 0100644 0001755 0000024 00000000265 10146623401 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.28 2.63 2.02 83 35 14 137 26 57 50 3 282
data-in/Linux_r1a_200411170425 0100644 0001755 0000024 00000000315 10146623403 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.08 1.22 1.15 91 32 27 189 20 21 5165 4150 86 6961
data-in/Linux_streamguys1_200411170425 0100644 0001755 0000024 00000000223 10146623401 015676 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.59 0.69 0.75 49 60 627 48 8 3 0
data-in/Linux_steve_200411170425 0100644 0001755 0000024 00000000113 10146623401 014536 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2373
data-in/Linux_hwnode5_200411170425 0100644 0001755 0000024 00000000225 10146623400 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.04 19 52 505 141 15 3 0
data-in/Linux_hwnode3_200411170425 0100644 0001755 0000024 00000000224 10146623400 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.11 1.15 1.11 73 17 780 95 27 3 0
data-in/Linux_hwnode2_200411170425 0100644 0001755 0000024 00000000225 10146623400 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.04 0.06 81 15 770 229 23 4 0
data-in/FreeBSD_mb2_200411170425 0100644 0001755 0000024 00000000000 10146623374 014207 0 ustar djh staff data-in/FreeBSD_r4p_200411170425 0100644 0001755 0000024 00000000611 10146623400 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 165 22409216 158793728 233033728 1551364096 140197888 1959056679 1542124385
data-in/FreeBSD_psa4_200411170425 0100644 0001755 0000024 00000000535 10146623377 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104045317 122679264
data-in/FreeBSD_psa3_200411170425 0100644 0001755 0000024 00000000627 10146623414 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.71 1.52 1.37 21 2 10 29 2 142 33 8 1 12889 24023 8031 2438 67955 3526656 365576192 1075662848 560795648 92872704 1249628049 1483666356
data-in/FreeBSD_psa2_200411170425 0100644 0001755 0000024 00000000630 10146623400 014373 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.57 0.64 0.34 13 0 1 34 0 155 76 7 1 13201 17814 56450 500 6201 916832256 322846720 343015424 511836160 11919360 1840362730 2824632206
data-in/FreeBSD_pinky_200411170425 0100644 0001755 0000024 00000000566 10146623400 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.44 0.56 71 13 31 52 75 305 10 14 4 0 0 16822272 171204608 743743488 79126528 32505856 861325203 3668148780 11 0
data-in/Linux_r1f_200411170425 0100644 0001755 0000024 00000000274 10146623405 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.48 1.27 1.21 87 85 46 215 20 8634 13018 15 8691
data-in/Linux_mb_200411170430 0100644 0001755 0000024 00000000155 10146624055 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.01 13 16 81 15 1
data-in/Linux_staging_200411170430 0100644 0001755 0000024 00000000166 10146624052 015053 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.04 0.98 0.54 8 100 119 26 0
data-in/Linux_psa1_200411170430 0100644 0001755 0000024 00000000113 10146624052 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 237
data-in/Linux_r1z_200411170430 0100644 0001755 0000024 00000000306 10146624056 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.14 2.64 2.09 84 35 23 128 18 3 75 69 2 115
data-in/Linux_r1m2_200411170430 0100644 0001755 0000024 00000000313 10146624056 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.18 0.06 0.06 86 81 34 141 20 3 1929 976 43 1198
data-in/Linux_r1m1_200411170430 0100644 0001755 0000024 00000000312 10146624055 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.20 0.13 0.14 69 73 29 162 32 3 689 361 18 2077
data-in/Linux_r1f_200411170430 0100644 0001755 0000024 00000000274 10146624062 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.32 1.25 1.21 87 85 46 208 20 8669 13067 15 8695
data-in/Linux_r1a1_200411170430 0100644 0001755 0000024 00000000265 10146624057 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.52 2.84 2.25 83 35 14 142 26 78 63 5 366
data-in/Linux_r1a_200411170430 0100644 0001755 0000024 00000000315 10146624060 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.18 1.22 1.17 91 32 27 182 20 21 5184 4165 87 6987
data-in/Linux_streamguys1_200411170430 0100644 0001755 0000024 00000000223 10146624054 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.16 0.84 0.76 49 60 627 48 8 3 0
data-in/Linux_steve_200411170430 0100644 0001755 0000024 00000000113 10146624056 014541 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2369
data-in/Linux_mnode_200411170430 0100644 0001755 0000024 00000000224 10146624055 014517 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.57 0.43 0.49 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170430 0100644 0001755 0000024 00000000225 10146624055 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
6.61 2.27 0.82 19 52 510 141 15 3 0
data-in/Linux_hwnode3_200411170430 0100644 0001755 0000024 00000000224 10146624056 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.76 1.09 1.10 73 17 801 96 27 3 0
data-in/Linux_hwnode2_200411170430 0100644 0001755 0000024 00000000225 10146624054 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.04 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170430 0100644 0001755 0000024 00000000000 10146624051 014174 0 ustar djh staff data-in/FreeBSD_r4p_200411170430 0100644 0001755 0000024 00000000611 10146624054 014234 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 166 22896640 158797824 232542208 1551364096 140197888 1959248452 1543888969
data-in/FreeBSD_psa4_200411170430 0100644 0001755 0000024 00000000535 10146624054 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104049880 122685282
data-in/FreeBSD_psa3_200411170430 0100644 0001755 0000024 00000000627 10146624055 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
2.27 1.80 1.52 21 2 10 29 2 139 32 9 1 12933 24121 8049 2438 68081 9863168 364273664 1097560064 533946368 92790784 1251408309 1490414994
data-in/FreeBSD_psa2_200411170430 0100644 0001755 0000024 00000000630 10146624056 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.46 0.36 0.27 13 0 1 34 0 140 72 7 1 13271 17842 56829 500 6207 873943040 329523200 367362048 523698176 11923456 1846661421 2876521363
data-in/FreeBSD_pinky_200411170430 0100644 0001755 0000024 00000000566 10146624055 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.19 0.36 0.49 71 13 31 52 75 304 10 14 4 0 0 10313728 168169472 748933120 83501056 32485376 866832380 3673573472 11 0
data-in/Linux_r1q_200411170430 0100644 0001755 0000024 00000000276 10146624061 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.59 2.81 2.13 89 80 42 286 20 11909 6072 188 29303
data-in/Linux_mb_200411170435 0100644 0001755 0000024 00000000155 10146624530 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 80 15 1
data-in/Linux_staging_200411170435 0100644 0001755 0000024 00000000166 10146624530 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.08 0.60 0.51 8 100 113 26 0
data-in/Linux_psa1_200411170435 0100644 0001755 0000024 00000000113 10146624530 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.11 0.10 0.04 4 26 233
data-in/Linux_r1m2_200411170435 0100644 0001755 0000024 00000000314 10146624531 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.10 0.08 86 81 34 138 20 3 2009 1032 45 1239
data-in/Linux_r1m1_200411170435 0100644 0001755 0000024 00000000312 10146624527 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.19 0.17 69 73 29 154 32 3 712 364 18 2157
data-in/Linux_r1f_200411170435 0100644 0001755 0000024 00000000274 10146624535 014122 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.37 1.25 87 85 46 210 20 8690 13130 15 8702
data-in/Linux_r1a1_200411170435 0100644 0001755 0000024 00000000265 10146624540 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.47 3.12 2.53 83 35 14 144 26 96 76 5 453
data-in/Linux_streamguys1_200411170435 0100644 0001755 0000024 00000000223 10146624532 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 0.99 0.80 49 60 626 47 8 3 0
data-in/Linux_steve_200411170435 0100644 0001755 0000024 00000000113 10146624532 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2370
data-in/Linux_mnode_200411170435 0100644 0001755 0000024 00000000224 10146624530 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.34 0.42 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170435 0100644 0001755 0000024 00000000225 10146624527 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.98 0.68 19 52 502 141 15 3 0
data-in/Linux_r1z_200411170435 0100644 0001755 0000024 00000000306 10146624531 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.21 2.49 2.18 84 35 23 123 16 3 89 78 4 133
data-in/Linux_hwnode3_200411170435 0100644 0001755 0000024 00000000224 10146624531 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.73 1.89 1.42 73 17 794 94 27 3 0
data-in/Linux_hwnode2_200411170435 0100644 0001755 0000024 00000000225 10146624530 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.02 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170435 0100644 0001755 0000024 00000000000 10146624524 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170435 0100644 0001755 0000024 00000000611 10146624530 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 285 1 169 22540288 158867456 232837120 1551355904 140197888 1959523048 1546432172
data-in/FreeBSD_psa4_200411170435 0100644 0001755 0000024 00000000535 10146624530 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104072731 122698902
data-in/FreeBSD_psa3_200411170435 0100644 0001755 0000024 00000000616 10146624527 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.67 1.75 1.58 21 2 10 29 2 134 31 9 1 1246 3747 802 0 90 4096000 360603648 1085267968 586231808 62234624 1253059201 1496613909
data-in/FreeBSD_psa2_200411170435 0100644 0001755 0000024 00000000627 10146624530 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.73 0.51 13 0 1 34 0 154 73 7 1 13302 17929 56923 500 6216 843890688 323391488 345382912 583815168 9969664 1854323909 3017114188
data-in/FreeBSD_pinky_200411170435 0100644 0001755 0000024 00000000566 10146624530 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.22 0.35 0.46 71 13 31 52 75 291 10 14 4 0 0 12230656 170147840 745664512 83132416 32088064 872181185 3678962595 11 0
data-in/Linux_r1q_200411170435 0100644 0001755 0000024 00000000264 10146624531 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.30 3.07 2.48 89 77 42 125 21 27 10 0 30
data-in/Linux_r1a_200411170435 0100644 0001755 0000024 00000000315 10146624533 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.76 1.37 1.23 91 32 27 194 20 21 5203 4190 87 7014
data-in/Linux_mb_200411170440 0100644 0001755 0000024 00000000155 10146625204 014014 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.02 0.00 13 16 76 15 1
data-in/Linux_staging_200411170440 0100644 0001755 0000024 00000000166 10146625203 015053 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.21 0.36 8 100 113 26 0
data-in/Linux_psa1_200411170440 0100644 0001755 0000024 00000000113 10146625204 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.03 0.01 4 26 234
data-in/Linux_r1z_200411170440 0100644 0001755 0000024 00000000307 10146625204 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 1.20 1.73 84 34 23 124 16 3 100 84 4 149
data-in/Linux_r1q_200411170440 0100644 0001755 0000024 00000000264 10146625205 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.30 2.47 2.36 89 77 42 134 23 54 24 1 82
data-in/Linux_r1m2_200411170440 0100644 0001755 0000024 00000000314 10146625204 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.13 0.09 86 81 34 140 20 3 2091 1080 46 1281
data-in/Linux_r1m1_200411170440 0100644 0001755 0000024 00000000312 10146625204 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.23 0.17 0.16 69 73 29 153 32 3 734 387 18 2237
data-in/Linux_r1f_200411170440 0100644 0001755 0000024 00000000274 10146625210 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.25 1.22 87 85 46 213 20 8708 13172 15 8705
data-in/Linux_r1a1_200411170440 0100644 0001755 0000024 00000000266 10146625205 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.62 3.29 2.74 83 35 14 149 34 192 84 7 528
data-in/Linux_r1a_200411170440 0100644 0001755 0000024 00000000315 10146625206 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.28 1.22 91 32 27 190 20 21 5241 4211 87 7039
data-in/Linux_streamguys1_200411170440 0100644 0001755 0000024 00000000223 10146625204 015676 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.16 0.97 0.78 49 60 627 48 8 3 0
data-in/Linux_steve_200411170440 0100644 0001755 0000024 00000000113 10146625205 014537 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2370
data-in/Linux_mnode_200411170440 0100644 0001755 0000024 00000000224 10146625205 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.30 0.38 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170440 0100644 0001755 0000024 00000000225 10146625204 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.10 0.40 0.50 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170440 0100644 0001755 0000024 00000000224 10146625204 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 1.43 1.34 73 17 785 94 27 3 0
data-in/Linux_hwnode2_200411170440 0100644 0001755 0000024 00000000225 10146625203 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170440 0100644 0001755 0000024 00000000000 10146625200 014172 0 ustar djh staff data-in/FreeBSD_r4p_200411170440 0100644 0001755 0000024 00000000611 10146625203 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 77 10 8 1 6 0 285 1 173 22069248 158978048 233115648 1551437824 140197888 1960170454 1549403293
data-in/FreeBSD_psa4_200411170440 0100644 0001755 0000024 00000000535 10146625204 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137199616 104247296 45051904 32768 104079606 122707142
data-in/FreeBSD_psa3_200411170440 0100644 0001755 0000024 00000000617 10146625204 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.22 1.36 1.44 21 2 10 30 2 128 31 9 1 1302 3895 826 0 210 4091904 347840512 1085808640 592424960 68268032 1255300597 1511405811
data-in/FreeBSD_psa2_200411170440 0100644 0001755 0000024 00000000630 10146625204 014374 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.28 0.36 13 0 1 34 0 155 76 7 1 13359 18008 57233 500 6224 726290432 323751936 366555136 679526400 10326016 1862584180 3113712415
data-in/FreeBSD_pinky_200411170440 0100644 0001755 0000024 00000000566 10146625204 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.28 0.40 71 13 31 52 75 302 10 14 4 0 0 12042240 170545152 745377792 84656128 30781440 877595965 3684377083 11 0
data-in/Linux_mb_200411170445 0100644 0001755 0000024 00000000155 10146625661 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.02 0.00 13 16 82 15 1
data-in/Linux_psa1_200411170445 0100644 0001755 0000024 00000000113 10146625657 014275 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 235
data-in/Linux_r1z_200411170445 0100644 0001755 0000024 00000000307 10146625660 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.13 0.49 1.27 84 34 23 128 18 3 116 87 6 166
data-in/Linux_r1m2_200411170445 0100644 0001755 0000024 00000000314 10146625660 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.16 0.10 86 81 34 137 20 3 2168 1139 47 1325
data-in/Linux_r1m1_200411170445 0100644 0001755 0000024 00000000312 10146625661 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.16 0.15 69 73 29 154 32 3 768 400 18 2316
data-in/Linux_r1f_200411170445 0100644 0001755 0000024 00000000274 10146625665 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.20 1.23 1.21 87 85 46 206 20 8729 13219 15 8712
data-in/Linux_r1a1_200411170445 0100644 0001755 0000024 00000000267 10146625662 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.26 2.81 2.68 83 35 14 142 23 207 109 9 619
data-in/Linux_r1a_200411170445 0100644 0001755 0000024 00000000315 10146625662 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.25 1.22 91 32 27 187 20 21 5254 4227 88 7064
data-in/Linux_streamguys1_200411170445 0100644 0001755 0000024 00000000223 10146625662 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.59 0.88 0.79 49 60 627 48 8 3 0
data-in/Linux_steve_200411170445 0100644 0001755 0000024 00000000113 10146625662 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170445 0100644 0001755 0000024 00000000224 10146625661 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.37 0.39 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170445 0100644 0001755 0000024 00000000225 10146625660 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.16 0.36 19 52 491 136 15 3 0
data-in/Linux_hwnode3_200411170445 0100644 0001755 0000024 00000000224 10146625657 015003 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.03 1.07 1.19 73 17 775 96 27 3 0
data-in/Linux_hwnode2_200411170445 0100644 0001755 0000024 00000000225 10146625660 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170445 0100644 0001755 0000024 00000000000 10146625655 014215 0 ustar djh staff data-in/FreeBSD_r4p_200411170445 0100644 0001755 0000024 00000000611 10146625657 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 285 1 179 22773760 158924800 232546304 1551355904 140197888 1960490490 1551748021
data-in/FreeBSD_psa4_200411170445 0100644 0001755 0000024 00000000535 10146625660 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104084925 122714076
data-in/FreeBSD_psa3_200411170445 0100644 0001755 0000024 00000000617 10146625660 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.34 1.29 1.37 21 2 10 30 2 139 36 9 1 1342 4045 834 0 343 9777152 364081152 1105207296 546279424 73089024 1257994576 1525083863
data-in/FreeBSD_psa2_200411170445 0100644 0001755 0000024 00000000630 10146625662 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.06 0.19 0.30 13 0 1 34 0 154 69 7 1 13391 18039 57351 500 6233 668262400 281636864 383172608 762322944 11055104 1869924907 3187250890
data-in/FreeBSD_pinky_200411170445 0100644 0001755 0000024 00000000566 10146625660 014704 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.17 0.32 0.40 71 13 31 52 75 299 10 14 4 0 0 15458304 171089920 741531648 84611072 30711808 883392502 3689784965 11 0
data-in/Linux_staging_200411170445 0100644 0001755 0000024 00000000166 10146625660 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.07 0.25 8 100 113 26 0
data-in/Linux_r1q_200411170445 0100644 0001755 0000024 00000000265 10146625661 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.47 2.34 2.32 89 77 42 136 21 77 55 1 132
data-in/Linux_mb_200411170450 0100644 0001755 0000024 00000000155 10146626334 014022 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 76 15 1
data-in/Linux_staging_200411170450 0100644 0001755 0000024 00000000166 10146626334 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.17 8 100 113 26 0
data-in/Linux_psa1_200411170450 0100644 0001755 0000024 00000000113 10146626334 014262 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 235
data-in/Linux_r1z_200411170450 0100644 0001755 0000024 00000000310 10146626336 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.19 0.92 84 34 23 119 16 3 134 100 6 184
data-in/Linux_r1q_200411170450 0100644 0001755 0000024 00000000266 10146626335 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.88 2.93 2.58 89 77 42 130 21 114 78 1 184
data-in/Linux_r1m2_200411170450 0100644 0001755 0000024 00000000314 10146626334 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.16 0.11 86 81 34 137 20 3 2243 1194 50 1357
data-in/Linux_r1m1_200411170450 0100644 0001755 0000024 00000000312 10146626335 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.20 0.21 0.18 69 73 29 150 32 3 794 406 18 2388
data-in/Linux_r1f_200411170450 0100644 0001755 0000024 00000000274 10146626344 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.13 1.15 1.17 87 85 46 207 20 8751 13285 15 8715
data-in/Linux_r1a1_200411170450 0100644 0001755 0000024 00000000267 10146626335 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.11 2.33 2.55 83 34 14 142 25 226 135 9 697
data-in/Linux_r1a_200411170450 0100644 0001755 0000024 00000000315 10146626341 014103 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.90 1.48 1.31 91 32 27 192 20 21 5261 4259 88 7092
data-in/Linux_streamguys1_200411170450 0100644 0001755 0000024 00000000223 10146626335 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.47 0.76 0.77 49 60 627 48 8 3 0
data-in/Linux_steve_200411170450 0100644 0001755 0000024 00000000113 10146626336 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.09 0.04 0.01 73 63 2370
data-in/Linux_mnode_200411170450 0100644 0001755 0000024 00000000224 10146626334 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.35 0.36 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170450 0100644 0001755 0000024 00000000225 10146626335 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.05 0.25 19 52 493 136 15 3 0
data-in/Linux_hwnode3_200411170450 0100644 0001755 0000024 00000000224 10146626333 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.56 0.75 1.01 73 17 786 97 27 3 0
data-in/Linux_hwnode2_200411170450 0100644 0001755 0000024 00000000225 10146626336 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170450 0100644 0001755 0000024 00000000000 10146626331 014201 0 ustar djh staff data-in/Linux_mb_200411170455 0100644 0001755 0000024 00000000155 10146627007 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.06 0.02 0.00 13 16 78 15 1
data-in/FreeBSD_psa4_200411170450 0100644 0001755 0000024 00000000535 10146626334 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104090362 122721392
data-in/FreeBSD_psa3_200411170450 0100644 0001755 0000024 00000000620 10146626334 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.14 1.16 1.28 21 2 10 31 2 131 31 9 1 1376 4157 856 0 469 4087808 348332032 1087733760 551497728 106782720 1259826301 1535079460
data-in/FreeBSD_psa2_200411170450 0100644 0001755 0000024 00000000613 10146626333 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.02 0.77 0.50 13 0 1 33 0 130 68 7 1 15 23 32 0 3 1030270976 199135232 384217088 482516992 10309632 1878792614 3304715764
data-in/FreeBSD_pinky_200411170450 0100644 0001755 0000024 00000000566 10146626334 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.31 0.81 0.57 71 13 31 52 75 305 10 14 4 0 0 12791808 169684992 744161280 87379968 29384704 888664016 3695135439 11 0
data-in/FreeBSD_r4p_200411170450 0100644 0001755 0000024 00000000611 10146626334 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 285 1 181 21716992 159621120 232906752 1551355904 140197888 1961506536 1555488361
data-in/Linux_staging_200411170455 0100644 0001755 0000024 00000000166 10146627006 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.11 8 100 113 26 0
data-in/Linux_psa1_200411170455 0100644 0001755 0000024 00000000113 10146627010 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 234
data-in/Linux_r1z_200411170455 0100644 0001755 0000024 00000000310 10146627011 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.06 0.65 84 34 23 120 16 3 149 108 8 203
data-in/Linux_r1q_200411170455 0100644 0001755 0000024 00000000266 10146627011 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.54 2.65 2.54 89 77 42 128 20 132 91 2 237
data-in/Linux_r1m2_200411170455 0100644 0001755 0000024 00000000314 10146627011 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.05 0.07 86 81 34 129 20 3 2323 1243 50 1395
data-in/Linux_r1m1_200411170455 0100644 0001755 0000024 00000000312 10146627010 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.11 0.15 69 73 29 150 32 3 811 429 18 2469
data-in/Linux_r1f_200411170455 0100644 0001755 0000024 00000000274 10146627015 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.21 1.19 87 85 46 204 20 8808 13324 15 8722
data-in/Linux_r1a1_200411170455 0100644 0001755 0000024 00000000270 10146627010 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 1.03 1.92 83 34 14 136 25 251 144 11 778
data-in/Linux_r1a_200411170455 0100644 0001755 0000024 00000000315 10146627013 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.31 1.27 91 32 27 186 20 21 5276 4270 88 7117
data-in/Linux_streamguys1_200411170455 0100644 0001755 0000024 00000000223 10146627012 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.67 0.66 0.70 49 60 627 47 8 3 0
data-in/Linux_mnode_200411170455 0100644 0001755 0000024 00000000224 10146627011 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.25 0.35 0.35 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170455 0100644 0001755 0000024 00000000225 10146627010 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.05 0.18 19 52 496 136 15 3 0
data-in/Linux_hwnode3_200411170455 0100644 0001755 0000024 00000000224 10146627011 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.69 0.67 0.89 73 17 795 95 27 3 0
data-in/Linux_hwnode2_200411170455 0100644 0001755 0000024 00000000225 10146627010 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.04 0.02 0.00 81 15 768 229 23 4 0
data-in/FreeBSD_mb2_200411170455 0100644 0001755 0000024 00000000000 10146627004 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170455 0100644 0001755 0000024 00000000610 10146627007 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 1 2 0 74 9 8 1 6 0 285 1 183 23158784 160677888 230387712 1551376384 140197888 1962839343 1557865090
data-in/FreeBSD_psa4_200411170455 0100644 0001755 0000024 00000000535 10146627007 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104096591 122728582
data-in/FreeBSD_psa3_200411170455 0100644 0001755 0000024 00000000617 10146627007 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.38 1.24 1.27 21 2 10 31 2 139 31 9 1 1414 4255 876 0 605 9879552 336384000 1079119872 579391488 93659136 1261398607 1541983106
data-in/FreeBSD_psa2_200411170455 0100644 0001755 0000024 00000000615 10146627010 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.46 0.60 0.48 13 0 1 33 0 138 74 7 1 49 94 129 0 12 1020055552 252764160 388792320 432881664 11956224 1888632543 3437315698
data-in/FreeBSD_pinky_200411170455 0100644 0001755 0000024 00000000566 10146627010 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.24 0.48 0.49 71 13 31 52 75 299 10 14 4 0 0 12013568 171274240 744198144 86642688 29274112 894239764 3700569184 11 0
data-in/Linux_steve_200411170455 0100644 0001755 0000024 00000000113 10146627012 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2370
data-in/Linux_mb_200411170500 0100644 0001755 0000024 00000000155 10146627464 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170500 0100644 0001755 0000024 00000000166 10146627464 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.07 8 100 113 26 0
data-in/Linux_psa1_200411170500 0100644 0001755 0000024 00000000113 10146627463 014262 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.19 0.06 0.01 4 26 236
data-in/Linux_r1z_200411170500 0100644 0001755 0000024 00000000310 10146627466 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.05 0.47 84 34 23 123 16 3 165 120 8 222
data-in/Linux_r1q_200411170500 0100644 0001755 0000024 00000000267 10146627465 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.27 2.36 2.43 89 77 42 136 21 161 114 2 292
data-in/Linux_r1m2_200411170500 0100644 0001755 0000024 00000000314 10146627466 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.07 0.07 86 81 34 136 20 3 2383 1295 52 1432
data-in/Linux_r1m1_200411170500 0100644 0001755 0000024 00000000312 10146627463 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.18 0.16 69 73 29 153 32 3 832 442 18 2536
data-in/Linux_r1f_200411170500 0100644 0001755 0000024 00000000274 10146627471 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.20 1.18 1.17 87 85 46 206 20 8835 13394 15 8725
data-in/Linux_r1a1_200411170500 0100644 0001755 0000024 00000000270 10146627465 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.70 0.62 1.48 83 34 14 146 28 276 194 14 847
data-in/Linux_r1a_200411170500 0100644 0001755 0000024 00000000315 10146627467 014111 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.22 1.23 1.24 91 32 27 186 20 21 5288 4288 89 7143
data-in/Linux_streamguys1_200411170500 0100644 0001755 0000024 00000000223 10146627466 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.51 0.55 0.62 49 60 625 46 8 3 0
data-in/Linux_steve_200411170500 0100644 0001755 0000024 00000000113 10146627465 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170500 0100644 0001755 0000024 00000000224 10146627465 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.31 0.34 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170500 0100644 0001755 0000024 00000000225 10146627465 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.12 19 52 495 136 15 3 0
data-in/Linux_hwnode3_200411170500 0100644 0001755 0000024 00000000224 10146627466 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.05 0.64 0.79 73 17 787 95 27 3 0
data-in/Linux_hwnode2_200411170500 0100644 0001755 0000024 00000000225 10146627465 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 768 229 23 4 0
data-in/FreeBSD_mb2_200411170500 0100644 0001755 0000024 00000000000 10146627460 014201 0 ustar djh staff data-in/Linux_mb_200411170505 0100644 0001755 0000024 00000000156 10146630141 014013 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.01 0.00 13 16 103 15 1
data-in/FreeBSD_r4p_200411170500 0100644 0001755 0000024 00000000610 10146627463 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 1 2 0 74 9 8 1 6 0 285 1 186 18325504 160825344 234217472 1552232448 140197888 1964087557 1559807117
data-in/FreeBSD_psa4_200411170500 0100644 0001755 0000024 00000000535 10146627464 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104103168 122736370
data-in/FreeBSD_psa3_200411170500 0100644 0001755 0000024 00000000617 10146627463 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.27 1.25 1.25 21 2 10 32 2 126 31 9 1 1442 4405 892 0 731 4087808 352501760 1080295424 590848000 70701056 1262731785 1546711835
data-in/FreeBSD_psa2_200411170500 0100644 0001755 0000024 00000000616 10146627464 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.44 0.95 0.64 13 0 1 33 0 130 71 7 1 98 139 343 0 20 1022570496 258621440 382222336 430002176 13033472 1896713435 3502293628
data-in/FreeBSD_pinky_200411170500 0100644 0001755 0000024 00000000566 10146627464 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.68 1.03 0.72 71 13 31 52 75 288 11 14 4 0 0 10964992 169398272 746618880 66117632 50302976 899636466 3705690352 11 0
data-in/Linux_staging_200411170505 0100644 0001755 0000024 00000000166 10146630140 015051 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.04 8 100 113 26 0
data-in/Linux_psa1_200411170505 0100644 0001755 0000024 00000000113 10146630137 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 235
data-in/Linux_r1z_200411170505 0100644 0001755 0000024 00000000310 10146630140 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.33 84 34 23 126 16 3 180 130 8 239
data-in/Linux_r1q_200411170505 0100644 0001755 0000024 00000000267 10146630142 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.61 2.78 2.61 89 77 42 138 20 185 124 2 349
data-in/Linux_r1m2_200411170505 0100644 0001755 0000024 00000000314 10146630141 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.06 0.07 86 81 34 136 20 3 2449 1345 54 1464
data-in/Linux_r1m1_200411170505 0100644 0001755 0000024 00000000312 10146630141 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 0.17 0.16 69 73 29 147 32 3 880 448 18 2611
data-in/Linux_r1f_200411170505 0100644 0001755 0000024 00000000274 10146630146 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.30 1.30 1.23 87 85 46 205 20 8857 13445 15 8740
data-in/Linux_r1a1_200411170505 0100644 0001755 0000024 00000000270 10146630140 014155 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.35 1.12 83 34 14 132 26 318 211 14 930
data-in/Linux_r1a_200411170505 0100644 0001755 0000024 00000000315 10146630145 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.14 1.47 1.32 91 32 27 192 20 21 5305 4304 89 7171
data-in/Linux_streamguys1_200411170505 0100644 0001755 0000024 00000000223 10146630140 015673 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.21 0.42 0.55 49 60 625 46 8 3 0
data-in/Linux_steve_200411170505 0100644 0001755 0000024 00000000113 10146630142 014535 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170505 0100644 0001755 0000024 00000000224 10146630141 014513 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.35 78 47 138 38 1 12 0
data-in/Linux_hwnode3_200411170505 0100644 0001755 0000024 00000000224 10146630140 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.42 0.65 73 17 785 94 27 3 0
data-in/Linux_hwnode2_200411170505 0100644 0001755 0000024 00000000225 10146630140 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.07 0.02 81 15 764 229 23 4 0
data-in/FreeBSD_mb2_200411170505 0100644 0001755 0000024 00000000000 10146630135 014177 0 ustar djh staff data-in/FreeBSD_r4p_200411170505 0100644 0001755 0000024 00000000610 10146630141 014230 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 291 1 188 18358272 160784384 234221568 1552236544 140197888 1964270761 1561435557
data-in/FreeBSD_psa4_200411170505 0100644 0001755 0000024 00000000535 10146630141 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104109857 122743856
data-in/FreeBSD_psa3_200411170505 0100644 0001755 0000024 00000000617 10146630141 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.29 1.22 1.23 21 2 10 32 2 129 30 9 1 1486 4515 912 0 861 9285632 364556288 1065455616 578166784 80969728 1264478220 1551941140
data-in/FreeBSD_psa2_200411170505 0100644 0001755 0000024 00000000617 10146630140 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.10 0.36 0.44 13 0 1 34 0 131 70 7 1 120 181 375 0 30 1027252224 261169152 374874112 429510656 13643776 1901940795 3534713483
data-in/FreeBSD_pinky_200411170505 0100644 0001755 0000024 00000000566 10146630141 014667 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.13 0.56 0.60 71 13 31 52 75 305 10 14 4 0 0 13541376 170037248 743043072 70447104 46333952 905084070 3710923529 11 0
data-in/Linux_hwnode5_200411170505 0100644 0001755 0000024 00000000225 10146630141 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.03 0.09 19 52 496 136 15 3 0
data-in/Linux_mb_200411170510 0100644 0001755 0000024 00000000155 10146630614 014013 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 83 15 1
data-in/Linux_staging_200411170510 0100644 0001755 0000024 00000000166 10146630612 015051 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.01 8 100 113 26 0
data-in/Linux_psa1_200411170510 0100644 0001755 0000024 00000000113 10146630614 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 232
data-in/Linux_r1z_200411170510 0100644 0001755 0000024 00000000310 10146630615 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.23 84 34 23 137 25 3 193 141 8 256
data-in/Linux_r1q_200411170510 0100644 0001755 0000024 00000000267 10146630615 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.43 2.56 2.55 89 77 42 137 21 207 156 3 409
data-in/Linux_r1m2_200411170510 0100644 0001755 0000024 00000000314 10146630614 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.06 0.07 86 81 34 136 20 3 2522 1412 55 1498
data-in/Linux_r1m1_200411170510 0100644 0001755 0000024 00000000312 10146630614 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.22 0.18 69 73 29 147 32 3 891 464 18 2685
data-in/Linux_r1f_200411170510 0100644 0001755 0000024 00000000274 10146630620 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.22 1.20 87 85 46 205 20 8883 13488 15 8748
data-in/Linux_r1a1_200411170510 0100644 0001755 0000024 00000000271 10146630614 014160 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.21 0.83 83 34 14 134 28 388 221 16 1001
data-in/Linux_r1a_200411170510 0100644 0001755 0000024 00000000315 10146630617 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.64 1.51 1.37 91 32 27 185 21 21 5325 4308 89 7195
data-in/Linux_streamguys1_200411170510 0100644 0001755 0000024 00000000223 10146630616 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
3.82 2.16 1.15 49 60 624 45 8 3 0
data-in/Linux_steve_200411170510 0100644 0001755 0000024 00000000113 10146630615 014536 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170510 0100644 0001755 0000024 00000000224 10146630615 014515 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.26 0.31 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170510 0100644 0001755 0000024 00000000225 10146630612 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.06 19 52 497 136 15 3 0
data-in/Linux_hwnode3_200411170510 0100644 0001755 0000024 00000000224 10146630614 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.75 0.50 0.61 73 17 794 95 27 3 0
data-in/Linux_hwnode2_200411170510 0100644 0001755 0000024 00000000225 10146630615 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.05 0.01 81 15 758 230 23 4 0
data-in/FreeBSD_mb2_200411170510 0100644 0001755 0000024 00000000000 10146630610 014171 0 ustar djh staff data-in/Linux_psa1_200411170515 0100644 0001755 0000024 00000000113 10146631270 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.08 0.02 0.01 4 26 232
data-in/FreeBSD_psa4_200411170510 0100644 0001755 0000024 00000000535 10146630614 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.08 0.02 0.01 14 0 0 2 0 75 7 7 1 0 0 0 1811939328 137207808 104194048 45060096 32768 104115976 122751236
data-in/FreeBSD_psa3_200411170510 0100644 0001755 0000024 00000000617 10146630614 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.34 1.25 1.24 21 2 10 32 2 138 35 9 1 1532 4663 918 0 985 9719808 364920832 1098817536 560644096 64331776 1266354835 1558174543
data-in/FreeBSD_psa2_200411170510 0100644 0001755 0000024 00000000617 10146630614 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.05 0.14 0.31 13 0 1 34 0 131 68 7 1 150 217 484 0 38 1024167936 263471104 374820864 430321664 13668352 1907409769 3570524355
data-in/FreeBSD_pinky_200411170510 0100644 0001755 0000024 00000000565 10146630615 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.16 0.42 0.54 71 13 31 52 75 299 10 14 4 0 0 8302592 168607744 749514752 73691136 43290624 910494966 3716326539 11 0
data-in/FreeBSD_r4p_200411170510 0100644 0001755 0000024 00000000610 10146630613 014230 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 73 8 8 1 6 0 297 1 190 20185088 160788480 232419328 1552207872 140197888 1964418883 1563147954
data-in/Linux_staging_200411170515 0100644 0001755 0000024 00000000166 10146631266 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_r1z_200411170515 0100644 0001755 0000024 00000000310 10146631271 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.02 0.17 84 34 23 127 16 3 211 165 8 273
data-in/Linux_r1q_200411170515 0100644 0001755 0000024 00000000267 10146631271 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.45 2.37 2.45 89 77 42 142 21 233 162 3 464
data-in/Linux_r1m2_200411170515 0100644 0001755 0000024 00000000314 10146631271 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.18 0.09 0.08 86 81 34 144 20 3 2579 1496 56 1533
data-in/Linux_r1m1_200411170515 0100644 0001755 0000024 00000000312 10146631272 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.15 0.16 69 73 29 177 51 3 914 480 18 2761
data-in/Linux_r1f_200411170515 0100644 0001755 0000024 00000000274 10146631276 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.07 1.49 1.28 87 85 46 201 20 8910 13565 15 8763
data-in/Linux_r1a1_200411170515 0100644 0001755 0000024 00000000271 10146631271 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.21 0.65 83 34 14 138 27 406 232 18 1086
data-in/Linux_r1a_200411170515 0100644 0001755 0000024 00000000315 10146631274 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.30 1.31 91 32 27 183 20 21 5337 4337 90 7221
data-in/Linux_steve_200411170515 0100644 0001755 0000024 00000000113 10146631271 014542 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170515 0100644 0001755 0000024 00000000224 10146631271 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.33 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170515 0100644 0001755 0000024 00000000225 10146631271 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.03 19 52 499 136 15 3 0
data-in/Linux_hwnode3_200411170515 0100644 0001755 0000024 00000000224 10146631270 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.42 0.54 73 17 798 95 27 3 0
data-in/Linux_hwnode2_200411170515 0100644 0001755 0000024 00000000225 10146631271 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.02 0.00 81 15 770 230 23 4 0
data-in/FreeBSD_mb2_200411170515 0100644 0001755 0000024 00000000000 10146631264 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170515 0100644 0001755 0000024 00000000610 10146631271 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.01 0.00 9 0 0 2 0 72 7 8 1 6 0 297 1 193 20701184 160747520 231956480 1552195584 140197888 1964648060 1565922387
data-in/FreeBSD_psa4_200411170515 0100644 0001755 0000024 00000000535 10146631267 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104121951 122758298
data-in/FreeBSD_psa3_200411170515 0100644 0001755 0000024 00000000620 10146631270 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.44 1.43 1.32 21 2 10 33 2 138 36 9 1 1632 4821 984 0 1108 4112384 312295424 1078599680 638693376 64733184 1268898018 1565742030
data-in/FreeBSD_psa2_200411170515 0100644 0001755 0000024 00000000617 10146631270 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.08 0.23 13 0 1 34 0 131 67 7 1 194 284 628 0 47 1025552384 267333632 370733056 428879872 13950976 1913733047 3605738517
data-in/FreeBSD_pinky_200411170515 0100644 0001755 0000024 00000000565 10146631271 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.05 0.33 0.48 71 13 31 52 75 309 10 14 4 0 0 4227072 171495424 748916736 80707584 38055936 925786333 3722064563 11 0
data-in/Linux_mb_200411170515 0100644 0001755 0000024 00000000155 10146631266 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 80 15 1
data-in/Linux_streamguys1_200411170515 0100644 0001755 0000024 00000000223 10146631272 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 1.20 1.02 49 60 624 45 8 3 0
data-in/Linux_mb_200411170520 0100644 0001755 0000024 00000000155 10146631744 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170520 0100644 0001755 0000024 00000000166 10146631744 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170520 0100644 0001755 0000024 00000000113 10146631744 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.03 0.01 4 26 233
data-in/Linux_r1z_200411170520 0100644 0001755 0000024 00000000310 10146631745 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.02 0.12 84 34 23 127 18 3 228 174 8 294
data-in/Linux_r1q_200411170520 0100644 0001755 0000024 00000000267 10146631746 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.73 2.85 2.64 89 77 42 135 21 263 183 3 520
data-in/Linux_r1m2_200411170520 0100644 0001755 0000024 00000000314 10146631742 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.10 0.09 86 81 34 146 20 3 2634 1544 59 1567
data-in/Linux_r1m1_200411170520 0100644 0001755 0000024 00000000312 10146631744 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.16 69 73 29 171 50 3 939 488 18 2849
data-in/Linux_r1f_200411170520 0100644 0001755 0000024 00000000274 10146631751 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.68 1.48 1.32 87 85 46 209 20 8938 13619 15 8771
data-in/Linux_r1a_200411170520 0100644 0001755 0000024 00000000315 10146631750 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.80 1.41 1.33 91 32 27 187 20 21 5349 4346 90 7247
data-in/Linux_streamguys1_200411170520 0100644 0001755 0000024 00000000223 10146631746 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.59 0.79 49 60 624 45 8 3 0
data-in/Linux_steve_200411170520 0100644 0001755 0000024 00000000113 10146631745 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170520 0100644 0001755 0000024 00000000224 10146631745 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.20 0.30 0.33 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170520 0100644 0001755 0000024 00000000225 10146631745 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 500 136 15 3 0
data-in/Linux_hwnode3_200411170520 0100644 0001755 0000024 00000000224 10146631743 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.36 0.48 73 17 804 96 27 3 0
data-in/Linux_hwnode2_200411170520 0100644 0001755 0000024 00000000225 10146631746 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.03 0.00 81 15 777 230 23 4 0
data-in/FreeBSD_mb2_200411170520 0100644 0001755 0000024 00000000000 10146631741 014200 0 ustar djh staff data-in/FreeBSD_r4p_200411170520 0100644 0001755 0000024 00000000610 10146631743 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 297 1 195 19382272 161828864 232185856 1552203776 140197888 1965848794 1567879643
data-in/FreeBSD_psa4_200411170520 0100644 0001755 0000024 00000000535 10146631745 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104127872 122765806
data-in/FreeBSD_psa3_200411170520 0100644 0001755 0000024 00000000620 10146631744 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.58 1.38 1.32 21 2 10 33 2 151 38 9 1 1670 4951 994 2 1239 8065024 359739392 1078366208 578195456 74067968 1276660702 1573859933
data-in/FreeBSD_psa2_200411170520 0100644 0001755 0000024 00000000617 10146631744 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.13 0.19 13 0 1 34 0 130 66 7 1 235 332 719 0 55 1030660096 269836288 363626496 428376064 13950976 1920661265 3643169662
data-in/FreeBSD_pinky_200411170520 0100644 0001755 0000024 00000000566 10146631745 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.32 0.46 71 13 31 52 75 296 10 14 4 0 0 16429056 170364928 741871616 77004800 37732352 932481647 3727549127 11 0
data-in/Linux_r1a1_200411170520 0100644 0001755 0000024 00000000271 10146631745 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.13 0.48 83 34 14 125 24 412 239 18 1161
data-in/Linux_staging_200411170525 0100644 0001755 0000024 00000000166 10146632417 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170525 0100644 0001755 0000024 00000000113 10146632421 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.02 0.04 0.00 4 26 232
data-in/Linux_r1z_200411170525 0100644 0001755 0000024 00000000311 10146632421 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.08 84 34 23 127 17 3 245 194 10 311
data-in/Linux_r1q_200411170525 0100644 0001755 0000024 00000000267 10146632421 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.24 2.43 2.51 89 77 42 135 20 293 206 4 577
data-in/Linux_r1m2_200411170525 0100644 0001755 0000024 00000000314 10146632421 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.08 0.08 86 81 34 139 20 3 2710 1611 59 1602
data-in/Linux_r1m1_200411170525 0100644 0001755 0000024 00000000312 10146632420 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.08 0.12 69 73 29 166 50 3 976 520 18 2920
data-in/Linux_r1f_200411170525 0100644 0001755 0000024 00000000274 10146632426 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.59 1.45 1.33 87 85 46 199 20 8961 13685 15 8784
data-in/Linux_r1a1_200411170525 0100644 0001755 0000024 00000000271 10146632421 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.14 0.38 83 34 14 124 23 424 262 20 1237
data-in/Linux_r1a_200411170525 0100644 0001755 0000024 00000000315 10146632424 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.25 1.29 1.28 91 32 27 187 20 21 5363 4352 90 7275
data-in/Linux_streamguys1_200411170525 0100644 0001755 0000024 00000000223 10146632422 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.61 0.69 0.78 49 60 624 45 8 3 0
data-in/Linux_steve_200411170525 0100644 0001755 0000024 00000000113 10146632421 014541 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170525 0100644 0001755 0000024 00000000224 10146632421 014520 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.32 0.35 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170525 0100644 0001755 0000024 00000000225 10146632416 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.02 0.00 19 52 500 136 15 3 0
data-in/Linux_hwnode3_200411170525 0100644 0001755 0000024 00000000224 10146632420 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.35 0.34 0.43 73 17 806 96 27 3 0
data-in/Linux_hwnode2_200411170525 0100644 0001755 0000024 00000000225 10146632420 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 230 23 4 0
data-in/FreeBSD_mb2_200411170525 0100644 0001755 0000024 00000000000 10146632415 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170525 0100644 0001755 0000024 00000000610 10146632421 014235 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.01 0.00 9 0 1 2 0 74 9 8 1 6 0 297 1 197 18903040 162840576 231653376 1552203776 140197888 1967155117 1571010379
data-in/FreeBSD_psa4_200411170525 0100644 0001755 0000024 00000000535 10146632421 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104133781 122772868
data-in/FreeBSD_psa3_200411170525 0100644 0001755 0000024 00000000621 10146632421 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.18 1.27 1.28 21 2 10 34 2 139 32 9 1 1718 5085 1030 2 1373 9572352 364306432 1078116352 553304064 93134848 1278577589 1584419060
data-in/FreeBSD_psa2_200411170525 0100644 0001755 0000024 00000000617 10146632417 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.07 0.14 13 0 1 34 0 132 69 7 1 287 388 842 0 64 1026019328 288907264 364359680 413425664 13737984 1926715514 3715642976
data-in/FreeBSD_pinky_200411170525 0100644 0001755 0000024 00000000566 10146632421 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.27 0.40 0.48 71 13 31 52 75 299 10 14 4 0 0 15073280 171118592 741773312 78524416 36913152 937789831 3732877870 11 0
data-in/Linux_mb_200411170525 0100644 0001755 0000024 00000000155 10146632420 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.02 0.00 13 16 81 15 1
data-in/Linux_mb_200411170530 0100644 0001755 0000024 00000000155 10146633075 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 77 15 1
data-in/Linux_psa1_200411170530 0100644 0001755 0000024 00000000113 10146633074 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 233
data-in/Linux_r1z_200411170530 0100644 0001755 0000024 00000000311 10146633076 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.05 84 34 23 130 16 3 259 204 10 330
data-in/Linux_r1m2_200411170530 0100644 0001755 0000024 00000000314 10146633075 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.06 0.07 86 81 34 146 20 3 2771 1667 61 1642
data-in/Linux_r1m1_200411170530 0100644 0001755 0000024 00000000313 10146633075 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.09 0.10 69 73 29 168 50 3 1004 528 18 2998
data-in/Linux_r1f_200411170530 0100644 0001755 0000024 00000000274 10146633102 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.39 1.34 87 85 46 200 20 8992 13729 15 8792
data-in/Linux_r1a1_200411170530 0100644 0001755 0000024 00000000271 10146633074 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 0.13 0.31 83 34 14 133 28 439 267 22 1312
data-in/Linux_r1a_200411170530 0100644 0001755 0000024 00000000315 10146633100 014071 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.25 1.26 91 32 27 182 20 21 5380 4376 91 7300
data-in/Linux_streamguys1_200411170530 0100644 0001755 0000024 00000000223 10146633076 015704 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.85 0.70 0.72 49 60 628 45 8 3 0
data-in/Linux_steve_200411170530 0100644 0001755 0000024 00000000113 10146633076 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2373
data-in/Linux_mnode_200411170530 0100644 0001755 0000024 00000000224 10146633074 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.22 0.37 0.35 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170530 0100644 0001755 0000024 00000000225 10146633075 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.02 0.00 19 52 508 140 15 3 0
data-in/Linux_hwnode3_200411170530 0100644 0001755 0000024 00000000224 10146633075 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.82 0.40 0.40 73 17 808 95 27 3 0
data-in/Linux_hwnode2_200411170530 0100644 0001755 0000024 00000000225 10146633076 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 774 230 23 4 0
data-in/FreeBSD_mb2_200411170530 0100644 0001755 0000024 00000000000 10146633070 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170530 0100644 0001755 0000024 00000000610 10146633074 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 297 1 199 19783680 160944128 232669184 1552203776 140197888 1967597168 1573590192
data-in/FreeBSD_psa4_200411170530 0100644 0001755 0000024 00000000535 10146633074 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104141246 122780308
data-in/FreeBSD_psa3_200411170530 0100644 0001755 0000024 00000000622 10146633075 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.25 1.29 1.28 21 2 10 34 2 147 37 9 1 1778 5241 1094 6 1500 10731520 356274176 1084170240 570253312 77004800 1280907061 1594467610
data-in/FreeBSD_psa2_200411170530 0100644 0001755 0000024 00000000620 10146633074 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.03 0.09 13 0 1 34 0 134 69 7 1 334 422 1032 0 72 1022730240 296321024 365301760 408645632 13451264 1933755854 3764801782
data-in/FreeBSD_pinky_200411170530 0100644 0001755 0000024 00000000565 10146633075 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.35 0.46 71 13 31 52 75 310 10 14 5 0 0 8138752 170467328 751579136 81002496 32215040 943232628 3738281772 11 0
data-in/Linux_staging_200411170530 0100644 0001755 0000024 00000000166 10146633074 015060 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 26 0
data-in/Linux_r1q_200411170530 0100644 0001755 0000024 00000000267 10146633077 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.40 2.38 2.45 89 77 42 139 24 323 226 4 636
data-in/Linux_mb_200411170535 0100644 0001755 0000024 00000000155 10146633550 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.01 0.00 13 16 77 15 1
data-in/Linux_staging_200411170535 0100644 0001755 0000024 00000000166 10146633550 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170535 0100644 0001755 0000024 00000000113 10146633550 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.65 0.15 0.05 4 26 233
data-in/Linux_r1z_200411170535 0100644 0001755 0000024 00000000311 10146633551 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.03 0.05 84 34 23 129 24 3 277 207 10 349
data-in/Linux_r1q_200411170535 0100644 0001755 0000024 00000000267 10146633551 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.82 2.80 2.62 89 77 42 136 23 344 248 4 688
data-in/Linux_r1m2_200411170535 0100644 0001755 0000024 00000000314 10146633551 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.07 0.08 86 81 34 134 20 3 2840 1710 63 1678
data-in/Linux_r1m1_200411170535 0100644 0001755 0000024 00000000313 10146633550 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.08 0.09 69 73 29 167 50 3 1022 539 18 3077
data-in/Linux_r1f_200411170535 0100644 0001755 0000024 00000000274 10146633557 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.64 1.35 1.32 87 85 46 219 20 9029 13764 15 8806
data-in/Linux_r1a1_200411170535 0100644 0001755 0000024 00000000271 10146633550 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.14 0.26 83 34 14 130 26 459 272 22 1389
data-in/Linux_r1a_200411170535 0100644 0001755 0000024 00000000315 10146633554 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.75 1.42 1.31 91 32 27 192 20 21 5401 4393 91 7328
data-in/Linux_streamguys1_200411170535 0100644 0001755 0000024 00000000223 10146633551 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.39 1.54 1.06 49 60 613 46 8 3 0
data-in/Linux_steve_200411170535 0100644 0001755 0000024 00000000113 10146633552 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_mnode_200411170535 0100644 0001755 0000024 00000000224 10146633551 014526 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.29 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170535 0100644 0001755 0000024 00000000225 10146633550 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.04 0.01 19 52 525 146 15 3 0
data-in/Linux_hwnode3_200411170535 0100644 0001755 0000024 00000000224 10146633550 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.37 73 17 801 95 27 3 0
data-in/Linux_hwnode2_200411170535 0100644 0001755 0000024 00000000225 10146633550 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.03 0.00 81 15 774 230 23 4 0
data-in/FreeBSD_mb2_200411170535 0100644 0001755 0000024 00000000000 10146633544 014211 0 ustar djh staff data-in/FreeBSD_r4p_200411170535 0100644 0001755 0000024 00000000610 10146633550 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 201 18661376 160964608 233771008 1552203776 140197888 1967854445 1576781442
data-in/FreeBSD_psa4_200411170535 0100644 0001755 0000024 00000000535 10146633546 014417 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104146813 122787346
data-in/FreeBSD_psa2_200411170535 0100644 0001755 0000024 00000000620 10146633547 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.07 0.08 13 0 1 34 0 131 70 7 1 425 475 1492 0 81 1016975360 295006208 366239744 411910144 16318464 1941072297 3833192111
data-in/FreeBSD_pinky_200411170535 0100644 0001755 0000024 00000000566 10146633550 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.27 0.84 0.64 71 13 31 52 75 302 10 14 5 0 0 16109568 170262528 742993920 81850368 32186368 948391534 3743597941 11 0
data-in/FreeBSD_psa3_200411170535 0100644 0001755 0000024 00000000622 10146633547 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.33 1.17 1.20 21 2 10 34 2 147 32 9 1 1818 5375 1110 6 1633 11939840 343498752 1083555840 581611520 77828096 1282913228 1602551634
data-in/Linux_mb_200411170540 0100644 0001755 0000024 00000000155 10146634224 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170540 0100644 0001755 0000024 00000000166 10146634224 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170540 0100644 0001755 0000024 00000000113 10146634224 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.04 0.02 4 26 234
data-in/Linux_r1z_200411170540 0100644 0001755 0000024 00000000311 10146634225 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.02 84 34 23 121 16 3 295 224 12 372
data-in/Linux_r1q_200411170540 0100644 0001755 0000024 00000000267 10146634226 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.33 2.53 2.54 89 77 42 137 21 375 260 5 752
data-in/Linux_r1m2_200411170540 0100644 0001755 0000024 00000000314 10146634225 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.04 0.06 86 81 34 141 20 3 2906 1763 64 1717
data-in/Linux_r1m1_200411170540 0100644 0001755 0000024 00000000313 10146634225 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.05 0.08 69 73 29 169 50 3 1038 563 18 3156
data-in/Linux_r1f_200411170540 0100644 0001755 0000024 00000000274 10146634232 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.54 1.50 1.38 87 86 46 210 20 9100 13815 15 8816
data-in/Linux_r1a1_200411170540 0100644 0001755 0000024 00000000271 10146634223 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.19 0.25 83 34 14 127 24 476 292 24 1463
data-in/Linux_r1a_200411170540 0100644 0001755 0000024 00000000315 10146634227 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.88 1.58 1.38 91 32 27 189 20 22 5414 4404 91 7353
data-in/Linux_streamguys1_200411170540 0100644 0001755 0000024 00000000223 10146634226 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.53 0.82 0.86 49 60 612 45 8 3 0
data-in/Linux_steve_200411170540 0100644 0001755 0000024 00000000113 10146634226 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2366
data-in/Linux_mnode_200411170540 0100644 0001755 0000024 00000000224 10146634225 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.31 0.33 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170540 0100644 0001755 0000024 00000000225 10146634225 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.06 0.01 19 52 503 135 15 3 0
data-in/Linux_hwnode3_200411170540 0100644 0001755 0000024 00000000224 10146634224 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.15 0.29 0.34 73 17 805 95 27 3 0
data-in/Linux_hwnode2_200411170540 0100644 0001755 0000024 00000000225 10146634225 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.02 0.00 81 15 774 229 23 4 0
data-in/FreeBSD_mb2_200411170540 0100644 0001755 0000024 00000000000 10146634221 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170540 0100644 0001755 0000024 00000000610 10146634225 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 203 19410944 160968704 233017344 1552203776 140197888 1968048088 1579028311
data-in/FreeBSD_psa4_200411170540 0100644 0001755 0000024 00000000535 10146634223 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.03 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104152632 122794372
data-in/FreeBSD_psa3_200411170540 0100644 0001755 0000024 00000000621 10146634223 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.94 1.06 1.14 21 2 10 35 2 140 32 9 1 1860 5517 1224 6 1757 5070848 292155392 1088442368 649424896 63340544 1285727515 1613747310
data-in/FreeBSD_psa2_200411170540 0100644 0001755 0000024 00000000620 10146634224 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.05 0.07 13 0 1 34 0 136 73 7 1 517 512 1806 0 92 1014689792 293236736 364036096 418033664 16453632 1951295050 3972874521
data-in/FreeBSD_pinky_200411170540 0100644 0001755 0000024 00000000566 10146634224 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.18 0.43 0.50 71 13 31 52 75 296 10 14 5 0 0 14815232 168869888 743116800 84471808 32129024 953751616 3748991634 11 0
data-in/Linux_staging_200411170545 0100644 0001755 0000024 00000000166 10146634676 015077 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170545 0100644 0001755 0000024 00000000113 10146634700 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 234
data-in/Linux_r1q_200411170545 0100644 0001755 0000024 00000000267 10146634702 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.31 2.43 89 77 42 144 24 393 284 5 806
data-in/Linux_r1m2_200411170545 0100644 0001755 0000024 00000000314 10146634701 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.10 0.06 86 81 34 142 20 3 2975 1797 65 1751
data-in/Linux_r1m1_200411170545 0100644 0001755 0000024 00000000313 10146634701 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.05 0.07 69 73 29 172 50 3 1067 578 18 3226
data-in/Linux_r1f_200411170545 0100644 0001755 0000024 00000000274 10146634706 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.64 1.45 87 86 46 208 20 9173 13873 15 8830
data-in/Linux_r1a1_200411170545 0100644 0001755 0000024 00000000271 10146634700 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.32 0.25 0.26 83 35 14 131 24 493 315 28 1542
data-in/Linux_r1a_200411170545 0100644 0001755 0000024 00000000315 10146634702 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.26 1.33 1.31 91 32 27 188 20 22 5427 4428 92 7379
data-in/Linux_steve_200411170545 0100644 0001755 0000024 00000000113 10146634700 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.01 0.00 73 63 2373
data-in/Linux_streamguys1_200411170545 0100644 0001755 0000024 00000000223 10146634701 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.63 1.75 1.17 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170545 0100644 0001755 0000024 00000000224 10146634701 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.33 0.33 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170545 0100644 0001755 0000024 00000000225 10146634701 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.12 0.05 0.01 19 52 500 143 15 3 0
data-in/Linux_hwnode3_200411170545 0100644 0001755 0000024 00000000224 10146634700 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.33 0.35 73 17 805 97 27 3 0
data-in/Linux_hwnode2_200411170545 0100644 0001755 0000024 00000000225 10146634701 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170545 0100644 0001755 0000024 00000000000 10146634674 014217 0 ustar djh staff data-in/FreeBSD_r4p_200411170545 0100644 0001755 0000024 00000000610 10146634700 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 205 19431424 160968704 232996864 1552203776 140197888 1968491257 1592258482
data-in/FreeBSD_psa4_200411170545 0100644 0001755 0000024 00000000535 10146634700 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811886080 137211904 104251392 45051904 32768 104160307 122802392
data-in/FreeBSD_psa3_200411170545 0100644 0001755 0000024 00000000621 10146634700 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.94 1.10 1.13 21 2 10 35 2 151 36 9 1 1906 5625 1278 6 1901 4120576 336502784 1098248192 582737920 76824576 1288997788 1622979303
data-in/FreeBSD_psa2_200411170545 0100644 0001755 0000024 00000000621 10146634700 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.04 0.06 13 0 1 34 0 141 74 7 1 567 539 2060 0 101 1005735936 292450304 368660480 422572032 17031168 1959534076 4049708818
data-in/FreeBSD_pinky_200411170545 0100644 0001755 0000024 00000000565 10146634700 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.32 0.48 0.53 71 13 31 52 75 294 10 14 5 0 0 7364608 172392448 744824832 62521344 56299520 959014493 3754327950 11 0
data-in/Linux_mb_200411170545 0100644 0001755 0000024 00000000155 10146634676 014037 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 75 15 1
data-in/Linux_r1z_200411170545 0100644 0001755 0000024 00000000311 10146634701 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.01 84 34 23 123 16 3 311 232 12 391
data-in/Linux_mb_200411170550 0100644 0001755 0000024 00000000155 10146635354 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 81 15 1
data-in/Linux_staging_200411170550 0100644 0001755 0000024 00000000166 10146635354 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170550 0100644 0001755 0000024 00000000113 10146635354 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.01 0.02 0.00 4 26 234
data-in/Linux_r1z_200411170550 0100644 0001755 0000024 00000000311 10146635354 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 117 16 3 323 236 12 411
data-in/Linux_r1q_200411170550 0100644 0001755 0000024 00000000267 10146635355 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.82 2.83 2.62 89 77 42 139 21 414 323 5 866
data-in/Linux_r1m2_200411170550 0100644 0001755 0000024 00000000314 10146635355 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.16 0.10 86 81 34 133 20 3 3043 1845 68 1785
data-in/Linux_r1m1_200411170550 0100644 0001755 0000024 00000000313 10146635355 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.06 0.07 69 73 29 169 50 3 1093 590 18 3301
data-in/Linux_r1f_200411170550 0100644 0001755 0000024 00000000274 10146635365 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.54 1.51 1.44 87 86 46 207 20 9206 13911 15 8838
data-in/Linux_r1a1_200411170550 0100644 0001755 0000024 00000000271 10146635355 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.34 0.25 0.25 83 35 14 139 39 502 334 28 1615
data-in/Linux_r1a_200411170550 0100644 0001755 0000024 00000000315 10146635361 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.50 1.37 91 32 27 190 20 22 5440 4442 92 7406
data-in/Linux_streamguys1_200411170550 0100644 0001755 0000024 00000000223 10146635356 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.26 0.80 0.90 49 60 612 45 8 3 0
data-in/Linux_steve_200411170550 0100644 0001755 0000024 00000000113 10146635356 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.02 0.00 73 63 2374
data-in/Linux_mnode_200411170550 0100644 0001755 0000024 00000000224 10146635356 014530 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.28 0.31 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170550 0100644 0001755 0000024 00000000225 10146635355 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170550 0100644 0001755 0000024 00000000224 10146635354 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.38 0.43 0.38 73 17 812 93 29 3 0
data-in/Linux_hwnode2_200411170550 0100644 0001755 0000024 00000000225 10146635356 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170550 0100644 0001755 0000024 00000000000 10146635351 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170550 0100644 0001755 0000024 00000000610 10146635355 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 207 19427328 160972800 232996864 1552203776 140197888 1968697190 1594272443
data-in/FreeBSD_psa3_200411170550 0100644 0001755 0000024 00000000621 10146635354 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.80 0.94 1.05 21 2 10 35 2 134 34 8 1 1972 5747 1304 6 2030 3928064 290500608 1092878336 622866432 88260608 1290985823 1633269993
data-in/FreeBSD_psa2_200411170550 0100644 0001755 0000024 00000000620 10146635353 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.04 0.05 13 0 1 34 0 133 72 7 1 603 584 2221 0 109 999292928 291229696 368766976 429551616 17608704 1966298301 4112715141
data-in/FreeBSD_pinky_200411170550 0100644 0001755 0000024 00000000566 10146635355 014703 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.30 0.92 0.70 71 13 31 52 75 293 10 14 5 0 0 12091392 170827776 745062400 70373376 45047808 964572811 3759759418 11 0
data-in/FreeBSD_psa4_200411170550 0100644 0001755 0000024 00000000535 10146635353 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104166030 122809386
data-in/Linux_staging_200411170555 0100644 0001755 0000024 00000000166 10146636030 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_r1z_200411170555 0100644 0001755 0000024 00000000311 10146636031 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.00 84 34 23 117 16 3 336 244 12 430
data-in/Linux_r1q_200411170555 0100644 0001755 0000024 00000000267 10146636031 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.46 2.51 89 77 42 140 24 446 341 6 926
data-in/Linux_r1m2_200411170555 0100644 0001755 0000024 00000000314 10146636031 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.07 0.07 86 81 34 132 20 3 3104 1877 68 1820
data-in/Linux_r1m1_200411170555 0100644 0001755 0000024 00000000313 10146636031 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.04 0.06 69 73 29 166 50 3 1119 601 18 3380
data-in/Linux_r1f_200411170555 0100644 0001755 0000024 00000000274 10146636036 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.39 1.51 1.46 87 86 46 209 20 9242 13970 15 8850
data-in/Linux_r1a1_200411170555 0100644 0001755 0000024 00000000271 10146636031 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.27 0.26 83 35 14 128 29 515 337 28 1695
data-in/Linux_r1a_200411170555 0100644 0001755 0000024 00000000315 10146636032 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.34 1.34 91 32 27 189 20 23 5458 4473 92 7432
data-in/Linux_steve_200411170555 0100644 0001755 0000024 00000000113 10146636032 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2374
data-in/Linux_streamguys1_200411170555 0100644 0001755 0000024 00000000223 10146636032 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.47 0.71 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170555 0100644 0001755 0000024 00000000224 10146636030 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.30 0.30 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170555 0100644 0001755 0000024 00000000225 10146636027 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.01 0.00 19 52 489 132 15 3 0
data-in/Linux_hwnode3_200411170555 0100644 0001755 0000024 00000000224 10146636030 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.04 0.48 0.39 73 17 820 89 27 3 0
data-in/Linux_hwnode2_200411170555 0100644 0001755 0000024 00000000225 10146636030 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.14 0.06 0.01 81 15 762 223 23 4 0
data-in/FreeBSD_mb2_200411170555 0100644 0001755 0000024 00000000000 10146636025 014210 0 ustar djh staff data-in/FreeBSD_r4p_200411170555 0100644 0001755 0000024 00000000610 10146636030 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 209 19333120 160997376 233082880 1552187392 140197888 1968867380 1596317386
data-in/FreeBSD_psa4_200411170555 0100644 0001755 0000024 00000000535 10146636030 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104172843 122817022
data-in/FreeBSD_psa3_200411170555 0100644 0001755 0000024 00000000621 10146636027 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.02 1.13 1.11 21 2 10 35 2 136 30 8 1 2016 5867 1324 6 2160 4096000 347136000 1067515904 609853440 69832704 1292762410 1641915799
data-in/FreeBSD_psa2_200411170555 0100644 0001755 0000024 00000000621 10146636027 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.02 13 0 1 34 0 132 70 7 1 635 645 2369 0 118 1008054272 289689600 353054720 434057216 21594112 1974501414 4254865406
data-in/FreeBSD_pinky_200411170555 0100644 0001755 0000024 00000000566 10146636031 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.28 0.52 0.57 71 13 31 52 75 302 11 14 5 0 0 13443072 170807296 742313984 74530816 41734144 969948930 3764877295 11 0
data-in/Linux_mb_200411170555 0100644 0001755 0000024 00000000155 10146636030 014022 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.02 0.00 13 16 86 15 1
data-in/Linux_psa1_200411170555 0100644 0001755 0000024 00000000113 10146636031 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 232
data-in/Linux_mb_200411170600 0100644 0001755 0000024 00000000155 10146636503 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170600 0100644 0001755 0000024 00000000166 10146636504 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.22 0.05 0.02 8 100 113 26 0
data-in/Linux_psa1_200411170600 0100644 0001755 0000024 00000000113 10146636505 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.32 0.08 0.02 4 26 227
data-in/Linux_r1z_200411170600 0100644 0001755 0000024 00000000311 10146636506 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.01 84 34 23 121 16 3 350 252 12 449
data-in/Linux_r1q_200411170600 0100644 0001755 0000024 00000000267 10146636507 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.45 2.38 2.44 89 77 42 141 20 474 365 6 986
data-in/Linux_r1m2_200411170600 0100644 0001755 0000024 00000000314 10146636505 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.13 0.12 0.09 86 81 34 136 20 3 3175 1929 70 1856
data-in/Linux_r1m1_200411170600 0100644 0001755 0000024 00000000313 10146636505 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.08 0.07 69 73 29 169 50 3 1144 615 18 3457
data-in/Linux_r1a1_200411170600 0100644 0001755 0000024 00000000271 10146636505 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.19 0.22 83 35 14 134 28 527 357 32 1764
data-in/Linux_r1a_200411170600 0100644 0001755 0000024 00000000315 10146636506 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.39 1.39 1.36 91 32 27 186 20 23 5476 4508 93 7456
data-in/Linux_streamguys1_200411170600 0100644 0001755 0000024 00000000223 10146636505 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.94 0.76 0.75 49 60 614 45 8 3 0
data-in/Linux_mnode_200411170600 0100644 0001755 0000024 00000000224 10146636506 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.32 0.30 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170600 0100644 0001755 0000024 00000000225 10146636504 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170600 0100644 0001755 0000024 00000000224 10146636504 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.80 0.62 0.47 73 17 801 90 27 3 0
data-in/Linux_hwnode2_200411170600 0100644 0001755 0000024 00000000225 10146636506 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 81 15 762 223 23 4 0
data-in/FreeBSD_mb2_200411170600 0100644 0001755 0000024 00000000000 10146636501 014176 0 ustar djh staff data-in/Linux_r1f_200411170600 0100644 0001755 0000024 00000000274 10146636513 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.67 1.50 1.46 87 86 46 213 20 9329 14024 15 8858
data-in/FreeBSD_r4p_200411170600 0100644 0001755 0000024 00000000610 10146636504 014235 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.02 0.01 9 0 0 2 0 74 9 8 1 6 0 303 1 211 18522112 161013760 233877504 1552187392 140197888 1969177482 1598825471
data-in/FreeBSD_psa4_200411170600 0100644 0001755 0000024 00000000535 10146636504 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104179231 122824048
data-in/FreeBSD_psa3_200411170600 0100644 0001755 0000024 00000000621 10146636505 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.10 1.12 1.10 21 2 10 36 2 137 34 8 1 2050 6031 1360 6 2290 4091904 355762176 1089957888 558858240 89763840 1294730976 1650340317
data-in/FreeBSD_psa2_200411170600 0100644 0001755 0000024 00000000616 10146636504 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.42 0.44 0.20 13 0 1 34 0 133 69 7 1 674 698 2533 0 127 1011560448 288870400 346677248 437485568 21856256 1981077920 8806741
data-in/FreeBSD_pinky_200411170600 0100644 0001755 0000024 00000000566 10146636505 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.11 0.42 0.53 71 13 31 52 75 280 10 14 5 0 0 10366976 169119744 746065920 78045184 39804928 975490614 3770005483 11 0
data-in/Linux_steve_200411170600 0100644 0001755 0000024 00000000113 10146636506 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2374
data-in/Linux_mb_200411170605 0100644 0001755 0000024 00000000155 10146637161 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 82 15 1
data-in/Linux_staging_200411170605 0100644 0001755 0000024 00000000166 10146637161 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.01 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170605 0100644 0001755 0000024 00000000113 10146637160 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 226
data-in/Linux_r1z_200411170605 0100644 0001755 0000024 00000000311 10146637162 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.03 0.00 84 34 23 125 20 3 366 267 14 474
data-in/Linux_r1q_200411170605 0100644 0001755 0000024 00000000270 10146637162 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 2.85 2.64 89 77 42 136 20 503 400 6 1043
data-in/Linux_r1m1_200411170605 0100644 0001755 0000024 00000000313 10146637161 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.11 0.09 69 73 29 165 50 3 1170 629 18 3533
data-in/Linux_r1f_200411170605 0100644 0001755 0000024 00000000274 10146637166 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.42 1.54 1.50 87 86 46 209 20 9360 14075 15 8871
data-in/Linux_r1a1_200411170605 0100644 0001755 0000024 00000000271 10146637161 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.14 0.18 83 35 14 132 29 553 361 32 1849
data-in/Linux_r1a_200411170605 0100644 0001755 0000024 00000000315 10146637166 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.23 1.75 1.50 91 33 27 193 20 23 5486 4526 93 7484
data-in/Linux_streamguys1_200411170605 0100644 0001755 0000024 00000000223 10146637162 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.54 0.64 49 60 612 45 8 3 0
data-in/Linux_steve_200411170605 0100644 0001755 0000024 00000000113 10146637161 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2375
data-in/Linux_mnode_200411170605 0100644 0001755 0000024 00000000224 10146637161 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.27 0.34 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170605 0100644 0001755 0000024 00000000225 10146637160 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170605 0100644 0001755 0000024 00000000224 10146637160 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.39 0.41 73 17 796 91 27 3 0
data-in/Linux_hwnode2_200411170605 0100644 0001755 0000024 00000000225 10146637157 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 81 15 757 223 23 4 0
data-in/FreeBSD_mb2_200411170605 0100644 0001755 0000024 00000000000 10146637155 014211 0 ustar djh staff data-in/FreeBSD_r4p_200411170605 0100644 0001755 0000024 00000000611 10146637160 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.03 0.00 9 0 0 2 0 116 51 8 1 6 0 309 1 213 4026368 162918400 247730176 1552289792 138833920 1969424718 1600394322
data-in/FreeBSD_psa4_200411170605 0100644 0001755 0000024 00000000535 10146637160 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104185996 122831772
data-in/FreeBSD_psa3_200411170605 0100644 0001755 0000024 00000000621 10146637162 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.31 1.26 1.16 21 2 10 36 2 149 35 8 1 2120 6179 1612 6 2422 3530752 331755520 1083179008 581500928 98467840 1297602613 1659669615
data-in/FreeBSD_psa2_200411170605 0100644 0001755 0000024 00000000617 10146637160 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.21 0.24 0.17 13 0 1 34 0 133 72 7 1 720 757 2802 0 138 1012015104 287678464 341463040 444534784 20758528 1989823889 92983640
data-in/FreeBSD_pinky_200411170605 0100644 0001755 0000024 00000000565 10146637161 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.05 0.41 0.53 71 13 31 52 75 302 10 14 5 0 0 9744384 169402368 744628224 86749184 32878592 981011424 3775379127 11 0
data-in/Linux_r1m2_200411170605 0100644 0001755 0000024 00000000314 10146637161 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.09 86 81 34 135 20 3 3246 1981 72 1896
data-in/Linux_mb_200411170610 0100644 0001755 0000024 00000000155 10146637634 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.05 0.03 0.00 13 16 81 15 1
data-in/Linux_staging_200411170610 0100644 0001755 0000024 00000000166 10146637632 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.06 0.03 0.01 8 100 113 26 0
data-in/Linux_psa1_200411170610 0100644 0001755 0000024 00000000113 10146637634 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.05 0.02 4 26 227
data-in/Linux_r1z_200411170610 0100644 0001755 0000024 00000000311 10146637633 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 119 16 3 390 292 14 498
data-in/Linux_r1q_200411170610 0100644 0001755 0000024 00000000270 10146637635 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.37 2.52 2.54 89 77 42 132 20 545 422 7 1108
data-in/Linux_r1m2_200411170610 0100644 0001755 0000024 00000000314 10146637634 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.08 0.08 86 81 34 142 22 3 3310 2037 73 1938
data-in/Linux_r1m1_200411170610 0100644 0001755 0000024 00000000313 10146637635 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.08 0.08 69 73 29 160 50 3 1199 639 18 3607
data-in/Linux_r1f_200411170610 0100644 0001755 0000024 00000000274 10146637641 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.35 1.42 87 86 46 210 20 9388 14139 15 8879
data-in/Linux_r1a1_200411170610 0100644 0001755 0000024 00000000271 10146637634 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 0.10 0.15 83 35 14 123 25 575 378 32 1921
data-in/Linux_r1a_200411170610 0100644 0001755 0000024 00000000315 10146637640 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.45 1.48 1.44 91 33 27 190 20 23 5508 4551 93 7509
data-in/Linux_streamguys1_200411170610 0100644 0001755 0000024 00000000223 10146637636 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.50 1.97 1.17 49 60 612 45 8 3 0
data-in/Linux_steve_200411170610 0100644 0001755 0000024 00000000113 10146637635 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170610 0100644 0001755 0000024 00000000224 10146637635 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.36 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170610 0100644 0001755 0000024 00000000225 10146637635 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 489 132 15 3 0
data-in/Linux_hwnode3_200411170610 0100644 0001755 0000024 00000000224 10146637634 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.52 0.41 0.41 73 17 806 90 27 3 0
data-in/FreeBSD_mb2_200411170610 0100644 0001755 0000024 00000000000 10146637631 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170610 0100644 0001755 0000024 00000000611 10146637634 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 215 19861504 161103872 234176512 1552179200 138477568 1969721858 1604718728
data-in/FreeBSD_psa3_200411170610 0100644 0001755 0000024 00000000621 10146637637 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.66 1.01 1.08 21 2 10 36 2 127 34 8 1 2142 6341 1678 6 2550 3358720 369451008 646365184 978280448 100978688 1300502019 1667889470
data-in/FreeBSD_psa2_200411170610 0100644 0001755 0000024 00000000620 10146637633 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.16 0.15 13 0 1 34 0 140 73 7 1 763 821 2936 0 150 1004847104 286101504 343855104 450330624 21315584 1998668673 181760848
data-in/FreeBSD_pinky_200411170610 0100644 0001755 0000024 00000000565 10146637634 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.18 0.42 0.53 71 13 31 52 75 299 10 14 5 0 0 9347072 170545152 743940096 88121344 31449088 986462421 3780722857 11 0
data-in/Linux_hwnode2_200411170610 0100644 0001755 0000024 00000000225 10146637635 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.07 0.02 81 15 759 223 23 4 0
data-in/FreeBSD_psa4_200411170610 0100644 0001755 0000024 00000000535 10146637634 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104192063 122838914
data-in/Linux_mb_200411170615 0100644 0001755 0000024 00000000155 10146640312 014015 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/Linux_staging_200411170615 0100644 0001755 0000024 00000000166 10146640311 015054 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.87 0.45 0.17 8 100 114 26 0
data-in/Linux_psa1_200411170615 0100644 0001755 0000024 00000000113 10146640311 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.02 0.04 0.00 4 26 227
data-in/Linux_r1z_200411170615 0100644 0001755 0000024 00000000311 10146640312 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 127 18 3 398 294 14 516
data-in/Linux_r1q_200411170615 0100644 0001755 0000024 00000000270 10146640310 014116 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.52 2.42 2.47 89 77 42 137 20 566 443 7 1172
data-in/Linux_r1m2_200411170615 0100644 0001755 0000024 00000000314 10146640311 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.05 0.07 86 81 34 141 20 3 3374 2081 74 1972
data-in/Linux_r1m1_200411170615 0100644 0001755 0000024 00000000313 10146640311 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.11 0.09 69 73 29 176 50 3 1238 657 18 3687
data-in/Linux_r1f_200411170615 0100644 0001755 0000024 00000000274 10146640316 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.35 1.37 1.41 87 86 46 205 20 9423 14209 15 8891
data-in/Linux_r1a1_200411170615 0100644 0001755 0000024 00000000271 10146640307 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.06 0.13 0.15 83 35 14 130 25 588 390 36 2000
data-in/Linux_streamguys1_200411170615 0100644 0001755 0000024 00000000223 10146640312 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.49 0.99 0.95 49 60 617 45 8 3 0
data-in/Linux_steve_200411170615 0100644 0001755 0000024 00000000113 10146640312 014537 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170615 0100644 0001755 0000024 00000000224 10146640312 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170615 0100644 0001755 0000024 00000000225 10146640311 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.06 0.05 0.02 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170615 0100644 0001755 0000024 00000000224 10146640310 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.51 0.42 0.40 73 17 809 92 30 3 0
data-in/Linux_hwnode2_200411170615 0100644 0001755 0000024 00000000225 10146640311 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.07 0.02 81 15 761 223 23 4 0
data-in/FreeBSD_mb2_200411170615 0100644 0001755 0000024 00000000000 10146640305 014201 0 ustar djh staff data-in/Linux_r1a_200411170615 0100644 0001755 0000024 00000000315 10146640313 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.31 1.42 1.42 91 33 27 188 20 23 5525 4568 94 7535
data-in/FreeBSD_r4p_200411170615 0100644 0001755 0000024 00000000611 10146640307 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 217 19582976 161218560 234434560 1552084992 138477568 1970053897 1609987832
data-in/FreeBSD_psa4_200411170615 0100644 0001755 0000024 00000000535 10146640310 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104197964 122845976
data-in/FreeBSD_psa2_200411170615 0100644 0001755 0000024 00000000620 10146640311 014373 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.14 0.14 0.14 13 0 1 34 0 136 73 7 1 798 875 3097 0 161 1001213952 284172288 345493504 455020544 20549632 2005769016 230394191
data-in/FreeBSD_pinky_200411170615 0100644 0001755 0000024 00000000565 10146640311 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.16 0.57 0.61 71 13 31 52 75 320 10 14 5 0 0 7995392 171532288 750710784 80519168 32645120 997735689 3786535989 11 0
data-in/FreeBSD_psa3_200411170615 0100644 0001755 0000024 00000000622 10146640312 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.92 0.96 1.04 21 2 10 36 2 134 32 8 1 2192 6467 1694 12 2689 3473408 368467968 636125184 1000189952 90177536 1347688847 3535373401
data-in/Linux_mb_200411170620 0100644 0001755 0000024 00000000155 10146640765 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 81 15 1
data-in/Linux_staging_200411170620 0100644 0001755 0000024 00000000166 10146640765 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.78 1.30 0.59 8 100 114 26 0
data-in/Linux_psa1_200411170620 0100644 0001755 0000024 00000000113 10146640764 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 227
data-in/Linux_r1z_200411170620 0100644 0001755 0000024 00000000311 10146640765 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.00 84 34 23 121 18 3 409 311 14 539
data-in/Linux_r1m2_200411170620 0100644 0001755 0000024 00000000314 10146640763 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 136 20 3 3419 2116 77 2016
data-in/Linux_r1m1_200411170620 0100644 0001755 0000024 00000000313 10146640765 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.10 69 73 29 168 50 3 1256 660 18 3757
data-in/Linux_r1f_200411170620 0100644 0001755 0000024 00000000274 10146640773 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.78 1.50 1.44 87 86 46 209 20 9464 14279 15 8899
data-in/Linux_r1a1_200411170620 0100644 0001755 0000024 00000000271 10146640765 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.19 0.17 83 35 14 127 25 611 418 36 2078
data-in/Linux_r1a_200411170620 0100644 0001755 0000024 00000000315 10146640771 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.24 1.68 1.50 91 33 27 192 20 23 5552 4575 95 7562
data-in/Linux_streamguys1_200411170620 0100644 0001755 0000024 00000000223 10146640765 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.47 1.01 0.92 49 60 613 45 8 3 0
data-in/Linux_steve_200411170620 0100644 0001755 0000024 00000000113 10146640764 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170620 0100644 0001755 0000024 00000000224 10146640764 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.26 0.30 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170620 0100644 0001755 0000024 00000000225 10146640764 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170620 0100644 0001755 0000024 00000000224 10146640763 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.37 0.37 73 17 806 92 27 3 0
data-in/Linux_hwnode2_200411170620 0100644 0001755 0000024 00000000225 10146640765 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 766 223 23 4 0
data-in/Linux_r1q_200411170620 0100644 0001755 0000024 00000000270 10146640766 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.50 3.07 2.73 89 77 42 139 21 590 461 7 1239
data-in/FreeBSD_mb2_200411170620 0100644 0001755 0000024 00000000000 10146640760 014202 0 ustar djh staff data-in/FreeBSD_r4p_200411170620 0100644 0001755 0000024 00000000611 10146640764 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 219 19419136 161226752 234590208 1552084992 138477568 1970507036 1617870626
data-in/FreeBSD_psa4_200411170620 0100644 0001755 0000024 00000000535 10146640764 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104204693 122853394
data-in/FreeBSD_pinky_200411170620 0100644 0001755 0000024 00000000570 10146640764 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.07 0.45 0.57 71 13 31 52 75 322 10 14 11 0 0 10838016 170688512 749457408 68870144 43548672 1009624688 3793333010 11 0
data-in/FreeBSD_psa3_200411170620 0100644 0001755 0000024 00000000622 10146640766 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.93 0.91 0.98 21 2 10 36 2 137 35 8 1 2236 6591 1732 18 2818 3346432 368889856 649146368 1001984000 75067392 1424572454 2339737041
data-in/FreeBSD_psa2_200411170620 0100644 0001755 0000024 00000000617 10146640763 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.29 0.14 0.13 13 0 1 34 0 138 77 7 1 849 968 3246 0 171 994942976 282787840 348135424 459632640 20951040 2014077561 314630168
data-in/Linux_staging_200411170625 0100644 0001755 0000024 00000000166 10146641440 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.08 1.08 0.68 8 100 114 26 0
data-in/Linux_psa1_200411170625 0100644 0001755 0000024 00000000113 10146641440 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170625 0100644 0001755 0000024 00000000311 10146641440 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.03 0.00 84 34 23 148 42 3 425 318 14 563
data-in/Linux_r1q_200411170625 0100644 0001755 0000024 00000000270 10146641441 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.39 2.61 2.61 89 77 42 138 20 619 470 8 1303
data-in/Linux_r1m2_200411170625 0100644 0001755 0000024 00000000314 10146641437 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.06 0.06 0.07 86 81 34 139 20 3 3477 2156 77 2061
data-in/Linux_r1m1_200411170625 0100644 0001755 0000024 00000000313 10146641440 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.08 69 73 29 164 50 3 1280 678 18 3829
data-in/Linux_r1f_200411170625 0100644 0001755 0000024 00000000274 10146641446 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.40 1.49 1.45 87 86 46 207 20 9516 14340 15 8910
data-in/Linux_r1a1_200411170625 0100644 0001755 0000024 00000000271 10146641441 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.21 0.18 83 35 14 123 25 633 431 38 2157
data-in/Linux_steve_200411170625 0100644 0001755 0000024 00000000113 10146641442 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_streamguys1_200411170625 0100644 0001755 0000024 00000000223 10146641440 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.45 0.61 0.75 49 60 613 45 8 3 0
data-in/Linux_mnode_200411170625 0100644 0001755 0000024 00000000224 10146641437 014530 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.17 0.26 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode3_200411170625 0100644 0001755 0000024 00000000224 10146641440 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.42 0.41 73 17 797 91 27 3 0
data-in/Linux_hwnode2_200411170625 0100644 0001755 0000024 00000000225 10146641441 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.04 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170625 0100644 0001755 0000024 00000000000 10146641434 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170625 0100644 0001755 0000024 00000000611 10146641440 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 222 18558976 161304576 235388928 1552068608 138477568 1970942130 1621790898
data-in/FreeBSD_psa4_200411170625 0100644 0001755 0000024 00000000535 10146641440 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104209846 122860224
data-in/FreeBSD_psa3_200411170625 0100644 0001755 0000024 00000000621 10146641440 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.03 0.96 0.98 21 2 10 36 2 145 43 8 1 2272 6721 1776 21 2955 3530752 369238016 661561344 989405184 74698752 1499366041 1041169503
data-in/FreeBSD_psa2_200411170625 0100644 0001755 0000024 00000000620 10146641440 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.15 0.12 13 0 1 34 0 136 73 7 1 888 1030 3388 0 182 996651008 282480640 343556096 462790656 20971520 2022220618 373829481
data-in/FreeBSD_pinky_200411170625 0100644 0001755 0000024 00000000570 10146641440 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.58 0.65 71 13 31 52 75 316 10 14 17 0 0 12181504 170795008 749981696 80941056 29503488 1014932164 3799057634 11 0
data-in/Linux_mb_200411170625 0100644 0001755 0000024 00000000155 10146641440 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 82 15 1
data-in/Linux_r1a_200411170625 0100644 0001755 0000024 00000000315 10146641443 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.39 1.43 91 33 27 187 20 23 5564 4605 95 7589
data-in/Linux_hwnode5_200411170625 0100644 0001755 0000024 00000000225 10146641440 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 492 132 15 3 0
data-in/Linux_mb_200411170630 0100644 0001755 0000024 00000000155 10146642115 014015 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.00 0.00 13 16 73 15 1
data-in/Linux_staging_200411170630 0100644 0001755 0000024 00000000166 10146642114 015054 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.15 0.69 0.64 8 100 109 28 0
data-in/Linux_psa1_200411170630 0100644 0001755 0000024 00000000113 10146642114 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170630 0100644 0001755 0000024 00000000311 10146642116 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.27 0.07 0.02 84 34 23 142 37 3 439 330 14 581
data-in/Linux_r1q_200411170630 0100644 0001755 0000024 00000000270 10146642116 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.49 2.50 2.55 89 77 42 140 21 652 485 8 1372
data-in/Linux_r1m2_200411170630 0100644 0001755 0000024 00000000314 10146642114 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.06 0.06 86 81 34 137 20 3 3529 2209 82 2115
data-in/Linux_r1m1_200411170630 0100644 0001755 0000024 00000000313 10146642114 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.33 0.12 0.09 69 73 29 178 50 3 1312 688 18 3910
data-in/Linux_r1f_200411170630 0100644 0001755 0000024 00000000274 10146642122 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.60 1.43 1.43 87 86 46 202 20 9562 14376 15 8918
data-in/Linux_r1a1_200411170630 0100644 0001755 0000024 00000000271 10146642115 014162 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.66 0.38 0.24 83 35 14 141 43 648 448 40 2234
data-in/Linux_r1a_200411170630 0100644 0001755 0000024 00000000315 10146642121 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.57 1.36 1.38 91 33 27 187 20 23 5587 4613 95 7613
data-in/Linux_steve_200411170630 0100644 0001755 0000024 00000000113 10146642116 014540 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170630 0100644 0001755 0000024 00000000224 10146642114 014515 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.19 0.29 0.28 78 47 142 38 1 12 0
data-in/Linux_hwnode5_200411170630 0100644 0001755 0000024 00000000225 10146642115 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 497 132 15 3 0
data-in/Linux_hwnode3_200411170630 0100644 0001755 0000024 00000000224 10146642115 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.75 0.56 0.45 73 17 808 94 27 3 0
data-in/Linux_hwnode2_200411170630 0100644 0001755 0000024 00000000225 10146642114 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.04 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170630 0100644 0001755 0000024 00000000000 10146642110 014172 0 ustar djh staff data-in/FreeBSD_r4p_200411170630 0100644 0001755 0000024 00000000611 10146642114 014233 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 224 17915904 161366016 235986944 1552052224 138477568 1971255482 1625317373
data-in/FreeBSD_psa4_200411170630 0100644 0001755 0000024 00000000535 10146642114 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104223537 122877362
data-in/FreeBSD_psa3_200411170630 0100644 0001755 0000024 00000000622 10146642115 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.45 0.73 21 2 10 24 2 123 33 8 1 2322 6849 1790 22 3080 1196371968 231989248 632160256 35237888 2674688 1505340375 1183380126
data-in/FreeBSD_psa2_200411170630 0100644 0001755 0000024 00000000620 10146642113 014372 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.08 0.08 13 0 1 34 0 137 74 7 1 970 1089 3897 0 192 991277056 282501120 345460736 466034688 21176320 2031935348 452212099
data-in/FreeBSD_pinky_200411170630 0100644 0001755 0000024 00000000570 10146642116 014666 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
3.17 1.12 0.84 71 13 31 52 75 327 10 14 17 0 0 11448320 170045440 759414784 62910464 43372544 1021813794 3805257508 11 0
data-in/Linux_streamguys1_200411170630 0100644 0001755 0000024 00000000223 10146642115 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.42 0.62 49 60 612 45 8 3 0
data-in/Linux_psa1_200411170635 0100644 0001755 0000024 00000000113 10146642571 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.05 0.02 4 26 226
data-in/Linux_r1z_200411170635 0100644 0001755 0000024 00000000311 10146642571 014140 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.05 0.01 84 34 23 134 35 3 458 344 14 602
data-in/Linux_r1q_200411170635 0100644 0001755 0000024 00000000270 10146642570 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 2.83 2.69 89 77 42 135 20 690 494 8 1430
data-in/Linux_r1m2_200411170635 0100644 0001755 0000024 00000000314 10146642571 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.14 0.09 86 81 34 132 21 3 3588 2249 84 2164
data-in/Linux_r1m1_200411170635 0100644 0001755 0000024 00000000313 10146642571 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.08 69 73 29 167 50 3 1328 690 18 3994
data-in/Linux_r1f_200411170635 0100644 0001755 0000024 00000000274 10146642576 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.42 1.43 87 86 46 200 20 9598 14421 15 8932
data-in/Linux_r1a1_200411170635 0100644 0001755 0000024 00000000271 10146642572 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.27 0.22 83 35 14 131 31 668 459 40 2326
data-in/Linux_r1a_200411170635 0100644 0001755 0000024 00000000315 10146642576 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.93 1.65 1.49 91 33 27 191 20 23 5598 4628 96 7642
data-in/Linux_steve_200411170635 0100644 0001755 0000024 00000000113 10146642572 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_streamguys1_200411170635 0100644 0001755 0000024 00000000223 10146642572 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.51 0.60 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170635 0100644 0001755 0000024 00000000224 10146642571 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.14 0.26 0.26 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170635 0100644 0001755 0000024 00000000225 10146642571 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170635 0100644 0001755 0000024 00000000224 10146642570 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.25 0.70 0.51 73 17 792 93 27 3 0
data-in/FreeBSD_mb2_200411170635 0100644 0001755 0000024 00000000000 10146642565 014215 0 ustar djh staff data-in/FreeBSD_r4p_200411170635 0100644 0001755 0000024 00000000611 10146642571 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.03 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 226 17367040 161402880 236498944 1552052224 138477568 1971622241 1628268835
data-in/FreeBSD_psa4_200411170635 0100644 0001755 0000024 00000000535 10146642571 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811918848 137224192 104198144 45060096 32768 104440536 122892142
data-in/FreeBSD_psa3_200411170635 0100644 0001755 0000024 00000000622 10146642570 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.22 0.53 21 2 10 24 2 143 34 8 1 2350 7029 1802 22 3196 1124519936 279474176 657539072 32124928 4775936 1507704249 1197166271
data-in/FreeBSD_psa2_200411170635 0100644 0001755 0000024 00000000621 10146642571 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
2.25 0.86 0.38 13 0 1 34 0 135 71 7 1 1007 1145 3980 0 203 987136000 283160576 344584192 470290432 21278720 2040784900 510679277
data-in/FreeBSD_pinky_200411170635 0100644 0001755 0000024 00000000570 10146642571 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.49 1.17 0.91 71 13 31 52 75 313 10 14 17 0 0 12926976 171167744 754565120 78016512 26726400 1027361730 3810743406 11 0
data-in/Linux_mb_200411170635 0100644 0001755 0000024 00000000155 10146642571 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170635 0100644 0001755 0000024 00000000166 10146642570 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.24 0.45 8 100 109 28 0
data-in/Linux_hwnode2_200411170635 0100644 0001755 0000024 00000000225 10146642571 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.08 0.02 81 15 769 224 23 4 0
data-in/Linux_mb_200411170640 0100644 0001755 0000024 00000000155 10146643243 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170640 0100644 0001755 0000024 00000000166 10146643243 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.09 0.32 8 100 109 28 0
data-in/Linux_psa1_200411170640 0100644 0001755 0000024 00000000113 10146643245 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.03 0.02 0.00 4 26 223
data-in/Linux_r1z_200411170640 0100644 0001755 0000024 00000000311 10146643246 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.03 0.00 84 34 23 130 29 3 466 351 14 619
data-in/Linux_r1q_200411170640 0100644 0001755 0000024 00000000270 10146643244 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.47 2.52 2.58 89 77 42 140 20 727 518 9 1505
data-in/Linux_r1m2_200411170640 0100644 0001755 0000024 00000000314 10146643245 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 130 21 3 3627 2312 85 2209
data-in/Linux_r1m1_200411170640 0100644 0001755 0000024 00000000313 10146643244 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.09 0.08 69 73 29 166 50 3 1356 701 18 4073
data-in/Linux_r1f_200411170640 0100644 0001755 0000024 00000000274 10146643251 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.26 1.35 87 86 46 203 20 9614 14460 15 8940
data-in/Linux_r1a1_200411170640 0100644 0001755 0000024 00000000271 10146643244 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.34 0.25 0.21 83 35 14 130 31 682 466 42 2408
data-in/Linux_r1a_200411170640 0100644 0001755 0000024 00000000315 10146643246 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.36 1.48 1.45 91 33 27 188 20 23 5626 4644 96 7666
data-in/Linux_streamguys1_200411170640 0100644 0001755 0000024 00000000223 10146643246 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.81 0.56 0.57 49 60 614 47 8 3 0
data-in/Linux_steve_200411170640 0100644 0001755 0000024 00000000113 10146643247 014547 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170640 0100644 0001755 0000024 00000000224 10146643245 014524 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.31 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170640 0100644 0001755 0000024 00000000225 10146643243 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 495 133 15 3 0
data-in/Linux_hwnode3_200411170640 0100644 0001755 0000024 00000000224 10146643245 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.62 0.53 73 17 795 95 27 3 0
data-in/Linux_hwnode2_200411170640 0100644 0001755 0000024 00000000225 10146643246 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170640 0100644 0001755 0000024 00000000000 10146643241 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170640 0100644 0001755 0000024 00000000611 10146643245 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 229 17571840 161435648 236273664 1552039936 138477568 1972032168 1631480025
data-in/FreeBSD_psa4_200411170640 0100644 0001755 0000024 00000000535 10146643243 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137224192 104202240 45060096 32768 104479301 122898566
data-in/FreeBSD_psa3_200411170640 0100644 0001755 0000024 00000000622 10146643245 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.11 0.15 0.40 21 2 10 24 2 140 35 8 1 2396 7177 1840 22 3319 1116893184 300290048 642326528 32632832 6291456 1510454235 1213781467
data-in/FreeBSD_psa2_200411170640 0100644 0001755 0000024 00000000621 10146643245 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.84 0.55 0.35 13 0 1 34 0 136 76 7 1 1052 1202 4114 0 214 989560832 283095040 338702336 473505792 21585920 2050347697 591627087
data-in/FreeBSD_pinky_200411170640 0100644 0001755 0000024 00000000570 10146643245 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.10 0.54 0.69 71 13 31 52 75 319 10 14 17 0 0 10407936 171159552 755511296 52576256 53747712 1032945139 3816188971 11 0
data-in/Linux_mb_200411170645 0100644 0001755 0000024 00000000155 10146643721 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 87 15 1
data-in/Linux_staging_200411170645 0100644 0001755 0000024 00000000166 10146643721 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.22 8 100 109 28 0
data-in/Linux_psa1_200411170645 0100644 0001755 0000024 00000000113 10146643720 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 225
data-in/Linux_r1z_200411170645 0100644 0001755 0000024 00000000311 10146643723 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.04 0.01 84 34 23 138 24 3 490 360 14 640
data-in/Linux_r1q_200411170645 0100644 0001755 0000024 00000000270 10146643723 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.41 2.38 2.49 89 77 42 143 20 768 533 9 1564
data-in/Linux_r1m2_200411170645 0100644 0001755 0000024 00000000314 10146643722 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.15 0.09 0.08 86 81 34 145 20 3 3682 2381 86 2248
data-in/Linux_r1m1_200411170645 0100644 0001755 0000024 00000000313 10146643722 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.10 0.09 69 73 29 170 50 3 1378 716 18 4155
data-in/Linux_r1f_200411170645 0100644 0001755 0000024 00000000274 10146643727 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.52 1.34 1.35 87 86 46 201 20 9647 14518 15 8950
data-in/Linux_r1a1_200411170645 0100644 0001755 0000024 00000000271 10146643720 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.48 0.31 0.23 83 35 14 136 31 708 476 44 2502
data-in/Linux_r1a_200411170645 0100644 0001755 0000024 00000000315 10146643724 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.13 1.34 1.41 91 33 27 186 20 23 5642 4655 96 7692
data-in/Linux_streamguys1_200411170645 0100644 0001755 0000024 00000000223 10146643722 015712 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.87 0.89 0.69 49 60 614 45 8 3 0
data-in/Linux_steve_200411170645 0100644 0001755 0000024 00000000113 10146643722 014552 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.01 0.00 73 63 2376
data-in/Linux_mnode_200411170645 0100644 0001755 0000024 00000000224 10146643722 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.54 0.42 0.32 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170645 0100644 0001755 0000024 00000000225 10146643721 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 500 132 15 3 0
data-in/Linux_hwnode3_200411170645 0100644 0001755 0000024 00000000224 10146643721 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.41 0.46 73 17 807 95 27 3 0
data-in/Linux_hwnode2_200411170645 0100644 0001755 0000024 00000000225 10146643721 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.05 0.02 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170645 0100644 0001755 0000024 00000000000 10146643715 014214 0 ustar djh staff data-in/FreeBSD_r4p_200411170645 0100644 0001755 0000024 00000000611 10146643720 014245 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 321 1 231 17567744 161447936 236277760 1552027648 138477568 1972500252 1637364583
data-in/FreeBSD_psa4_200411170645 0100644 0001755 0000024 00000000535 10146643720 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137224192 104202240 45060096 32768 104486066 122906074
data-in/FreeBSD_psa3_200411170645 0100644 0001755 0000024 00000000622 10146643721 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.28 0.19 0.33 21 2 10 24 2 144 38 8 1 2452 7355 1862 22 3457 1086070784 310915072 660168704 34476032 6803456 1513540031 1228670270
data-in/FreeBSD_psa2_200411170645 0100644 0001755 0000024 00000000621 10146643720 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.06 0.28 0.27 13 0 1 34 0 135 73 7 1 1076 1272 4155 0 227 993808384 282824704 331485184 477683712 20647936 2059301796 679648712
data-in/FreeBSD_pinky_200411170645 0100644 0001755 0000024 00000000570 10146643721 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.10 0.71 0.68 71 13 31 52 75 309 10 14 17 0 0 13205504 171339776 751562752 67604480 39690240 1038305976 3821511480 11 0
data-in/Linux_mb_200411170650 0100644 0001755 0000024 00000000155 10146644373 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_staging_200411170650 0100644 0001755 0000024 00000000166 10146644374 015070 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.15 8 100 110 28 0
data-in/Linux_psa1_200411170650 0100644 0001755 0000024 00000000113 10146644373 014267 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170650 0100644 0001755 0000024 00000000311 10146644375 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.04 0.00 84 34 23 121 18 3 514 373 14 662
data-in/Linux_r1q_200411170650 0100644 0001755 0000024 00000000270 10146644375 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.15 2.98 2.71 89 77 42 144 21 795 564 9 1632
data-in/Linux_r1m2_200411170650 0100644 0001755 0000024 00000000314 10146644373 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.14 0.10 86 81 34 131 20 3 3728 2422 89 2296
data-in/Linux_r1m1_200411170650 0100644 0001755 0000024 00000000313 10146644373 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.07 0.08 69 73 29 172 50 3 1395 723 18 4236
data-in/Linux_r1f_200411170650 0100644 0001755 0000024 00000000274 10146644424 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.25 1.24 1.29 87 86 46 197 20 9685 14580 15 8961
data-in/Linux_r1a1_200411170650 0100644 0001755 0000024 00000000271 10146644374 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.33 0.26 83 35 14 127 29 723 505 44 2590
data-in/Linux_streamguys1_200411170650 0100644 0001755 0000024 00000000223 10146644375 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.62 0.71 0.65 49 60 613 45 8 3 0
data-in/Linux_steve_200411170650 0100644 0001755 0000024 00000000113 10146644375 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170650 0100644 0001755 0000024 00000000224 10146644375 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.32 0.31 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170650 0100644 0001755 0000024 00000000225 10146644375 015002 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170650 0100644 0001755 0000024 00000000225 10146644375 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.54 0.47 0.46 73 17 812 100 27 3 0
data-in/Linux_hwnode2_200411170650 0100644 0001755 0000024 00000000225 10146644374 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/Linux_r1a_200411170650 0100644 0001755 0000024 00000000315 10146644400 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.85 1.55 1.46 91 33 27 192 20 23 5652 4684 97 7713
data-in/FreeBSD_mb2_200411170650 0100644 0001755 0000024 00000000000 10146644370 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170650 0100644 0001755 0000024 00000000611 10146644374 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.02 0.00 9 0 0 2 0 75 10 8 1 6 0 321 1 234 17547264 161468416 236277760 1552027648 138477568 1972896936 1641893104
data-in/FreeBSD_psa4_200411170650 0100644 0001755 0000024 00000000535 10146644373 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811873792 137224192 104251392 45051904 32768 104493379 122913264
data-in/FreeBSD_psa3_200411170650 0100644 0001755 0000024 00000000624 10146644373 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.18 0.28 21 2 10 24 2 136 42 10 1 2486 7497 1882 22 3597 1057308672 328241152 659824640 36929536 16130048 1516848639 1255651210
data-in/FreeBSD_psa2_200411170650 0100644 0001755 0000024 00000000621 10146644374 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.11 0.19 13 0 1 34 0 137 75 7 1 1112 1328 4269 0 237 988360704 283693056 329576448 484106240 20713472 2066691970 741454272
data-in/FreeBSD_pinky_200411170650 0100644 0001755 0000024 00000000567 10146644374 014706 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.22 0.86 0.71 71 13 31 52 75 300 10 14 17 0 0 9936896 170676224 754728960 70606848 37453824 1043665891 3826884846 11 0
data-in/Linux_staging_200411170655 0100644 0001755 0000024 00000000166 10146645050 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.10 8 100 109 28 0
data-in/Linux_psa1_200411170655 0100644 0001755 0000024 00000000113 10146645051 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.06 0.04 0.01 4 26 224
data-in/Linux_r1z_200411170655 0100644 0001755 0000024 00000000311 10146645050 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.07 0.01 84 34 23 149 46 3 523 385 15 681
data-in/Linux_r1q_200411170655 0100644 0001755 0000024 00000000271 10146645052 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.63 2.65 2.63 89 77 42 145 25 827 575 10 1700
data-in/Linux_r1m2_200411170655 0100644 0001755 0000024 00000000314 10146645051 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 0.18 0.12 86 81 34 136 22 3 3779 2485 89 2337
data-in/Linux_r1m1_200411170655 0100644 0001755 0000024 00000000313 10146645051 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.27 0.13 0.09 69 73 29 164 50 3 1427 731 18 4323
data-in/Linux_r1f_200411170655 0100644 0001755 0000024 00000000274 10146645061 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.65 1.36 1.31 87 86 46 205 20 9729 14624 15 8973
data-in/Linux_r1a1_200411170655 0100644 0001755 0000024 00000000271 10146645052 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.24 0.24 83 35 14 136 33 738 507 46 2687
data-in/Linux_r1a_200411170655 0100644 0001755 0000024 00000000315 10146645054 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.39 1.42 91 33 27 186 20 23 5664 4701 97 7735
data-in/Linux_streamguys1_200411170655 0100644 0001755 0000024 00000000223 10146645054 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.51 1.44 0.95 49 60 612 45 8 3 0
data-in/Linux_steve_200411170655 0100644 0001755 0000024 00000000113 10146645052 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170655 0100644 0001755 0000024 00000000224 10146645051 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.31 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170655 0100644 0001755 0000024 00000000225 10146645051 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170655 0100644 0001755 0000024 00000000224 10146645050 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.47 0.47 73 17 816 97 27 3 0
data-in/Linux_hwnode2_200411170655 0100644 0001755 0000024 00000000225 10146645050 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170655 0100644 0001755 0000024 00000000000 10146645045 014213 0 ustar djh staff data-in/FreeBSD_r4p_200411170655 0100644 0001755 0000024 00000000611 10146645050 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 76 11 8 1 6 0 321 1 236 17829888 161574912 235864064 1552052224 138477568 1973178276 1644898641
data-in/FreeBSD_psa4_200411170655 0100644 0001755 0000024 00000000535 10146645051 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137228288 104202240 45060096 32768 104499736 122920262
data-in/FreeBSD_psa3_200411170655 0100644 0001755 0000024 00000000624 10146645051 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.19 0.21 0.25 21 2 10 24 2 132 38 12 1 2532 7643 1896 25 3725 1029914624 328560640 670109696 52035584 17813504 1520264227 1274925915
data-in/FreeBSD_psa2_200411170655 0100644 0001755 0000024 00000000621 10146645051 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.19 0.11 0.16 13 0 1 34 0 133 72 7 1 1139 1412 4316 0 248 989335552 282947584 325275648 487432192 21458944 2074418607 796674534
data-in/Linux_mb_200411170655 0100644 0001755 0000024 00000000155 10146645050 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/FreeBSD_pinky_200411170655 0100644 0001755 0000024 00000000570 10146645051 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
3.10 1.12 0.81 71 13 31 52 75 319 10 14 17 0 0 12873728 171454464 752058368 71700480 35315712 1048826770 3832011103 11 0
data-in/Linux_mb_200411170700 0100644 0001755 0000024 00000000155 10146645525 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.09 0.04 0.01 13 16 78 15 1
data-in/Linux_staging_200411170700 0100644 0001755 0000024 00000000166 10146645523 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.07 8 100 109 28 0
data-in/Linux_psa1_200411170700 0100644 0001755 0000024 00000000113 10146645525 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.06 0.02 4 26 228
data-in/Linux_r1z_200411170700 0100644 0001755 0000024 00000000311 10146645527 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.05 0.00 84 34 23 169 59 3 547 399 15 703
data-in/Linux_r1q_200411170700 0100644 0001755 0000024 00000000271 10146645525 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.29 2.43 2.53 89 77 42 144 21 861 585 10 1762
data-in/Linux_r1m2_200411170700 0100644 0001755 0000024 00000000314 10146645525 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.19 0.12 86 81 34 141 20 3 3833 2536 90 2382
data-in/Linux_r1m1_200411170700 0100644 0001755 0000024 00000000313 10146645526 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.13 0.09 69 73 29 176 50 3 1450 737 18 4403
data-in/Linux_r1f_200411170700 0100644 0001755 0000024 00000000274 10146645535 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.70 1.43 1.34 87 86 46 211 20 9771 14677 15 8982
data-in/Linux_r1a1_200411170700 0100644 0001755 0000024 00000000271 10146645525 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.41 0.44 0.32 83 35 14 137 32 756 534 47 2770
data-in/Linux_r1a_200411170700 0100644 0001755 0000024 00000000315 10146645530 014102 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.09 1.24 1.34 91 33 27 184 20 23 5688 4715 99 7754
data-in/Linux_streamguys1_200411170700 0100644 0001755 0000024 00000000223 10146645526 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.65 1.36 0.99 49 60 612 45 8 3 0
data-in/Linux_steve_200411170700 0100644 0001755 0000024 00000000113 10146645526 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170700 0100644 0001755 0000024 00000000224 10146645524 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.32 0.31 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170700 0100644 0001755 0000024 00000000225 10146645525 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170700 0100644 0001755 0000024 00000000224 10146645526 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.62 0.50 0.47 73 17 816 94 27 3 0
data-in/Linux_hwnode2_200411170700 0100644 0001755 0000024 00000000225 10146645526 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.03 0.01 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170700 0100644 0001755 0000024 00000000000 10146645521 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170700 0100644 0001755 0000024 00000000610 10146645525 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 321 1 239 19341312 162144256 233836544 1551998976 138477568 1974063817 1647335197
data-in/FreeBSD_psa4_200411170700 0100644 0001755 0000024 00000000535 10146645525 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.08 0.02 0.01 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137228288 104198144 45060096 32768 104505413 122927388
data-in/FreeBSD_psa3_200411170700 0100644 0001755 0000024 00000000624 10146645525 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.30 0.22 0.24 21 2 10 24 2 142 40 10 1 2572 7765 1930 25 3861 1024208896 326037504 663781376 66478080 17928192 1525705233 1287127192
data-in/FreeBSD_psa2_200411170700 0100644 0001755 0000024 00000000621 10146645523 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.38 0.30 13 0 1 34 0 131 71 7 1 1168 1489 4436 0 258 987422720 282415104 323473408 490807296 22331392 2082290801 858386975
data-in/FreeBSD_pinky_200411170700 0100644 0001755 0000024 00000000570 10146645526 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.59 0.66 71 13 31 52 75 287 10 14 17 0 0 10608640 169435136 753967104 74465280 34926592 1054215654 3837111502 11 0
data-in/Linux_mb_200411170705 0100644 0001755 0000024 00000000155 10146646200 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 76 15 1
data-in/Linux_staging_200411170705 0100644 0001755 0000024 00000000166 10146646200 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.04 8 100 109 28 0
data-in/Linux_psa1_200411170705 0100644 0001755 0000024 00000000113 10146646177 014274 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.05 0.01 4 26 224
data-in/Linux_r1z_200411170705 0100644 0001755 0000024 00000000311 10146646177 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.09 0.02 84 34 23 149 42 3 570 414 15 731
data-in/Linux_r1q_200411170705 0100644 0001755 0000024 00000000271 10146646201 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.91 2.94 2.74 89 77 42 132 20 899 606 10 1827
data-in/Linux_r1m2_200411170705 0100644 0001755 0000024 00000000314 10146646201 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.12 0.10 86 81 34 128 20 3 3880 2576 92 2428
data-in/Linux_r1m1_200411170705 0100644 0001755 0000024 00000000313 10146646201 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.10 69 73 29 166 50 3 1491 752 18 4481
data-in/Linux_r1f_200411170705 0100644 0001755 0000024 00000000274 10146646207 014122 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.70 1.55 1.42 87 86 46 210 20 9817 14733 15 8995
data-in/Linux_r1a1_200411170705 0100644 0001755 0000024 00000000271 10146646176 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.43 0.44 0.34 83 35 14 137 34 793 549 47 2863
data-in/Linux_r1a_200411170705 0100644 0001755 0000024 00000000316 10146646205 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.10 1.52 1.41 91 33 27 189 20 23 5705 4742 101 7780
data-in/Linux_streamguys1_200411170705 0100644 0001755 0000024 00000000223 10146646201 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.90 1.20 1.02 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170705 0100644 0001755 0000024 00000000224 10146646201 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.21 0.31 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170705 0100644 0001755 0000024 00000000225 10146646177 015005 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.04 0.05 0.01 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170705 0100644 0001755 0000024 00000000224 10146646200 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.08 1.18 0.80 73 17 810 94 27 3 0
data-in/Linux_hwnode2_200411170705 0100644 0001755 0000024 00000000225 10146646201 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.07 0.01 81 15 759 224 23 4 0
data-in/FreeBSD_mb2_200411170705 0100644 0001755 0000024 00000000000 10146646174 014213 0 ustar djh staff data-in/FreeBSD_r4p_200411170705 0100644 0001755 0000024 00000000610 10146646177 014252 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.02 0.00 9 0 0 2 0 74 9 8 1 6 0 327 1 242 19238912 162246656 233832448 1552003072 138477568 1974383224 1649624599
data-in/FreeBSD_psa4_200411170705 0100644 0001755 0000024 00000000535 10146646177 014422 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.02 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137228288 104198144 45060096 32768 104512330 122934832
data-in/FreeBSD_psa3_200411170705 0100644 0001755 0000024 00000000624 10146646200 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.29 0.17 0.20 21 2 10 24 2 131 37 11 1 2630 7929 1948 25 4010 1011994624 323227648 663945216 80695296 18571264 1529553297 1298335354
data-in/FreeBSD_psa2_200411170705 0100644 0001755 0000024 00000000621 10146646201 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.16 0.22 13 0 1 34 0 133 73 7 1 1202 1543 4502 0 269 987189248 281702400 317366272 497668096 22523904 2090856612 911578503
data-in/FreeBSD_pinky_200411170705 0100644 0001755 0000024 00000000570 10146646200 014667 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.52 0.65 71 13 31 52 75 303 10 14 17 0 0 11276288 170434560 751308800 77578240 32804864 1059465917 3842461145 11 0
data-in/Linux_steve_200411170705 0100644 0001755 0000024 00000000113 10146646202 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mb_200411170710 0100644 0001755 0000024 00000000155 10146646655 014031 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.05 0.01 0.00 13 16 81 15 1
data-in/Linux_staging_200411170710 0100644 0001755 0000024 00000000166 10146646652 015066 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.01 8 100 110 28 0
data-in/Linux_psa1_200411170710 0100644 0001755 0000024 00000000113 10146646654 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 224
data-in/Linux_r1z_200411170710 0100644 0001755 0000024 00000000311 10146646656 014142 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.08 0.02 84 34 23 137 32 3 597 430 15 750
data-in/Linux_r1q_200411170710 0100644 0001755 0000024 00000000271 10146646655 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.41 2.74 2.71 89 77 42 131 24 932 636 11 1898
data-in/Linux_r1m2_200411170710 0100644 0001755 0000024 00000000314 10146646653 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.16 0.11 86 81 34 133 20 3 3932 2626 94 2474
data-in/Linux_r1m1_200411170710 0100644 0001755 0000024 00000000313 10146646655 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.74 0.25 0.13 69 73 29 167 50 3 1533 765 22 4562
data-in/Linux_r1f_200411170710 0100644 0001755 0000024 00000000274 10146646662 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.40 1.52 1.45 87 86 46 204 20 9885 14791 15 9006
data-in/Linux_r1a1_200411170710 0100644 0001755 0000024 00000000271 10146646655 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.42 0.33 0.31 83 35 14 136 33 820 556 49 2962
data-in/Linux_r1a_200411170710 0100644 0001755 0000024 00000000316 10146646657 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.50 1.38 1.37 91 33 27 184 20 23 5723 4750 101 7800
data-in/Linux_streamguys1_200411170710 0100644 0001755 0000024 00000000223 10146646655 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.42 1.25 1.05 49 60 612 45 8 3 0
data-in/Linux_steve_200411170710 0100644 0001755 0000024 00000000113 10146646656 014554 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170710 0100644 0001755 0000024 00000000224 10146646654 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.29 0.29 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170710 0100644 0001755 0000024 00000000225 10146646654 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 488 132 15 3 0
data-in/Linux_hwnode3_200411170710 0100644 0001755 0000024 00000000224 10146646655 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.40 0.71 0.70 73 17 807 94 27 3 0
data-in/Linux_hwnode2_200411170710 0100644 0001755 0000024 00000000225 10146646653 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 758 224 23 4 0
data-in/FreeBSD_r4p_200411170710 0100644 0001755 0000024 00000000610 10146646655 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.01 0.00 9 0 0 2 0 74 9 8 1 6 0 333 1 246 19021824 162168832 234139648 1551990784 138477568 1974802924 1658605253
data-in/FreeBSD_psa4_200411170710 0100644 0001755 0000024 00000000535 10146646653 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137232384 104198144 45060096 32768 104517301 122941472
data-in/FreeBSD_psa3_200411170710 0100644 0001755 0000024 00000000622 10146646654 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.30 0.25 21 2 10 24 2 132 37 7 1 2696 8065 1988 25 4149 981995520 323354624 676397056 97869824 18817024 1532931275 1314123101
data-in/FreeBSD_psa2_200411170710 0100644 0001755 0000024 00000000621 10146646654 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.60 0.45 0.31 13 0 1 34 0 139 73 7 1 1236 1605 4608 0 282 981831680 279478272 319840256 502849536 22450176 2100629534 985785664
data-in/FreeBSD_mb2_200411170710 0100644 0001755 0000024 00000000000 10146646651 014207 0 ustar djh staff data-in/FreeBSD_pinky_200411170710 0100644 0001755 0000024 00000000567 10146646654 014706 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.23 0.42 0.58 71 13 31 52 75 312 10 14 18 0 0 9465856 170819584 752562176 56541184 54013952 1064726333 3847839487 11 0
data-in/Linux_mb_200411170715 0100644 0001755 0000024 00000000155 10146647327 014033 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_psa1_200411170715 0100644 0001755 0000024 00000000113 10146647330 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 228
data-in/Linux_r1z_200411170715 0100644 0001755 0000024 00000000311 10146647332 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.06 0.01 84 34 23 130 23 3 618 440 15 777
data-in/Linux_r1q_200411170715 0100644 0001755 0000024 00000000271 10146647332 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.28 2.41 2.57 89 77 42 130 21 965 665 11 1959
data-in/Linux_r1m2_200411170715 0100644 0001755 0000024 00000000315 10146647331 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.13 0.09 86 81 34 142 20 3 3981 2681 101 2525
data-in/Linux_r1m1_200411170715 0100644 0001755 0000024 00000000313 10146647331 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.14 0.10 69 73 29 181 50 3 1590 782 35 4652
data-in/Linux_r1f_200411170715 0100644 0001755 0000024 00000000274 10146647336 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.82 1.49 1.44 87 86 46 201 20 9916 14876 15 9020
data-in/Linux_r1a1_200411170715 0100644 0001755 0000024 00000000271 10146647330 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.26 0.28 83 35 14 139 33 845 578 51 3055
data-in/Linux_r1a_200411170715 0100644 0001755 0000024 00000000316 10146647332 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.07 1.24 1.31 91 33 27 183 20 23 5744 4775 101 7823
data-in/Linux_streamguys1_200411170715 0100644 0001755 0000024 00000000223 10146647332 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.41 0.72 0.86 49 60 613 45 8 3 0
data-in/Linux_steve_200411170715 0100644 0001755 0000024 00000000113 10146647332 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_hwnode5_200411170715 0100644 0001755 0000024 00000000225 10146647331 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.10 0.04 19 52 487 132 15 3 0
data-in/Linux_hwnode3_200411170715 0100644 0001755 0000024 00000000224 10146647327 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.83 0.76 0.72 73 17 797 94 27 3 0
data-in/Linux_hwnode2_200411170715 0100644 0001755 0000024 00000000225 10146647331 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.02 0.00 81 15 762 224 23 4 0
data-in/FreeBSD_mb2_200411170715 0100644 0001755 0000024 00000000000 10146647324 014212 0 ustar djh staff data-in/FreeBSD_r4p_200411170715 0100644 0001755 0000024 00000000610 10146647330 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 248 23834624 162119680 229388288 1551978496 138477568 1975098346 1661996909
data-in/FreeBSD_psa4_200411170715 0100644 0001755 0000024 00000000535 10146647326 014420 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137232384 104198144 45060096 32768 104524038 122948738
data-in/FreeBSD_psa3_200411170715 0100644 0001755 0000024 00000000623 10146647330 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.24 0.23 21 2 10 24 2 132 39 7 1 2764 8195 2006 25 4306 963612672 325828608 683331584 104996864 20664320 1535698355 1329079015
data-in/FreeBSD_psa2_200411170715 0100644 0001755 0000024 00000000622 10146647330 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.36 0.30 0.27 13 0 1 34 0 137 73 7 1 1324 1671 4953 0 295 985718784 276496384 313286656 508383232 22564864 2109866503 1075809625
data-in/FreeBSD_pinky_200411170715 0100644 0001755 0000024 00000000570 10146647332 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.69 0.96 0.76 71 13 31 52 75 319 10 14 19 0 0 20549632 158961664 747909120 64057344 55341056 1080929399 3853724607 11 0
data-in/Linux_staging_200411170715 0100644 0001755 0000024 00000000166 10146647330 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_mnode_200411170715 0100644 0001755 0000024 00000000224 10146647327 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.39 0.34 0.30 78 47 134 38 1 12 0
data-in/Linux_mb_200411170720 0100644 0001755 0000024 00000000155 10146650004 014011 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_staging_200411170720 0100644 0001755 0000024 00000000166 10146650002 015047 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170720 0100644 0001755 0000024 00000000113 10146650003 014250 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.08 0.08 0.03 4 26 231
data-in/Linux_r1z_200411170720 0100644 0001755 0000024 00000000311 10146650006 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.04 0.00 84 34 23 137 33 3 636 451 15 803
data-in/Linux_r1q_200411170720 0100644 0001755 0000024 00000000271 10146650005 014116 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.95 3.03 2.80 89 77 42 127 21 998 694 11 2041
data-in/Linux_r1m2_200411170720 0100644 0001755 0000024 00000000315 10146650004 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.10 0.08 86 81 34 145 20 3 4021 2739 105 2568
data-in/Linux_r1m1_200411170720 0100644 0001755 0000024 00000000313 10146650004 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 69 73 29 175 50 3 1609 789 39 4726
data-in/Linux_r1f_200411170720 0100644 0001755 0000024 00000000274 10146650012 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.37 1.38 1.39 87 86 46 206 20 9952 14933 15 9032
data-in/Linux_r1a1_200411170720 0100644 0001755 0000024 00000000271 10146650003 014155 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.37 0.28 0.27 83 35 14 134 30 867 585 51 3156
data-in/Linux_r1a_200411170720 0100644 0001755 0000024 00000000316 10146650011 014073 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.68 1.38 1.33 91 33 27 188 20 23 5753 4791 102 7846
data-in/Linux_streamguys1_200411170720 0100644 0001755 0000024 00000000223 10146650006 015675 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.09 1.17 0.99 49 60 612 45 8 3 0
data-in/Linux_steve_200411170720 0100644 0001755 0000024 00000000113 10146650005 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170720 0100644 0001755 0000024 00000000224 10146650004 014512 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.17 0.27 0.27 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170720 0100644 0001755 0000024 00000000225 10146650004 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.04 0.01 19 52 486 132 15 3 0
data-in/Linux_hwnode3_200411170720 0100644 0001755 0000024 00000000224 10146650005 014760 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.71 1.37 0.93 73 17 804 95 27 3 0
data-in/Linux_hwnode2_200411170720 0100644 0001755 0000024 00000000225 10146650003 014756 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170720 0100644 0001755 0000024 00000000000 10146650000 014167 0 ustar djh staff data-in/FreeBSD_r4p_200411170720 0100644 0001755 0000024 00000000610 10146650003 014226 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 250 23834624 162119680 229388288 1551978496 138477568 1975381853 1664700711
data-in/FreeBSD_psa4_200411170720 0100644 0001755 0000024 00000000535 10146650003 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811906560 137236480 104198144 45060096 32768 104529769 122955672
data-in/FreeBSD_psa3_200411170720 0100644 0001755 0000024 00000000623 10146650004 014374 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.25 0.21 0.21 21 2 10 24 2 119 32 7 1 2814 8339 2032 25 4455 985837568 320471040 652066816 117669888 22388736 1538031430 1341505923
data-in/FreeBSD_psa2_200411170720 0100644 0001755 0000024 00000000622 10146650004 014372 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.13 0.19 13 0 1 34 0 133 73 7 1 1355 1721 5069 0 307 984346624 276287488 313163776 510083072 22568960 2117756213 1134789237
data-in/FreeBSD_pinky_200411170720 0100644 0001755 0000024 00000000570 10146650005 014662 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.52 0.63 71 13 31 52 75 309 10 14 19 0 0 16543744 170876928 751775744 56320000 47886336 1086299240 3859080822 11 0
data-in/Linux_staging_200411170725 0100644 0001755 0000024 00000000166 10146650460 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170725 0100644 0001755 0000024 00000000113 10146650460 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.07 0.02 4 26 231
data-in/Linux_r1z_200411170725 0100644 0001755 0000024 00000000311 10146650461 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.03 0.00 84 34 23 173 70 3 653 465 15 831
data-in/Linux_r1q_200411170725 0100644 0001755 0000024 00000000272 10146650462 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.56 2.65 89 77 42 126 21 1049 701 12 2107
data-in/Linux_r1m2_200411170725 0100644 0001755 0000024 00000000315 10146650461 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.06 0.07 86 81 34 135 20 3 4072 2796 105 2615
data-in/Linux_r1m1_200411170725 0100644 0001755 0000024 00000000313 10146650461 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.14 0.09 69 73 29 175 51 3 1630 801 45 4809
data-in/Linux_r1f_200411170725 0100644 0001755 0000024 00000000274 10146650466 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.82 1.55 1.44 87 86 46 201 20 9992 14980 15 9048
data-in/Linux_r1a1_200411170725 0100644 0001755 0000024 00000000271 10146650460 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.36 0.42 0.34 83 35 14 160 59 885 597 53 3255
data-in/Linux_r1a_200411170725 0100644 0001755 0000024 00000000316 10146650462 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.21 1.37 1.34 91 33 27 183 20 23 5771 4808 102 7870
data-in/Linux_streamguys1_200411170725 0100644 0001755 0000024 00000000223 10146650461 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.44 0.64 0.80 49 60 612 45 8 3 0
data-in/Linux_steve_200411170725 0100644 0001755 0000024 00000000113 10146650462 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170725 0100644 0001755 0000024 00000000224 10146650461 014526 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.35 0.33 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170725 0100644 0001755 0000024 00000000225 10146650461 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.03 0.01 19 52 485 132 15 3 0
data-in/Linux_hwnode3_200411170725 0100644 0001755 0000024 00000000224 10146650461 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.89 1.51 1.15 73 17 798 95 27 3 0
data-in/Linux_hwnode2_200411170725 0100644 0001755 0000024 00000000225 10146650461 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.03 0.01 81 15 765 224 23 4 0
data-in/FreeBSD_mb2_200411170725 0100644 0001755 0000024 00000000000 10146650455 014212 0 ustar djh staff data-in/FreeBSD_r4p_200411170725 0100644 0001755 0000024 00000000610 10146650460 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.01 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 252 23769088 162119680 229453824 1551978496 138477568 1975717501 1668222234
data-in/Linux_mb_200411170725 0100644 0001755 0000024 00000000155 10146650461 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/FreeBSD_psa4_200411170725 0100644 0001755 0000024 00000000535 10146650460 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137236480 104202240 45060096 32768 104557594 122970504
data-in/FreeBSD_psa3_200411170725 0100644 0001755 0000024 00000000623 10146650460 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.83 0.38 0.28 21 2 10 24 2 125 32 7 1 2892 8437 2064 25 4617 968790016 325398528 653455360 127750144 23040000 1541213809 1355024019
data-in/FreeBSD_psa2_200411170725 0100644 0001755 0000024 00000000622 10146650460 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.12 0.16 13 0 1 34 0 142 78 7 1 1394 1760 5234 0 319 976052224 275492864 318455808 515780608 20668416 2128102312 1228429056
data-in/FreeBSD_pinky_200411170725 0100644 0001755 0000024 00000000567 10146650460 014702 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.37 0.52 0.62 71 13 31 52 75 303 10 14 19 0 0 8818688 172765184 754073600 75759616 31985664 1091756942 3864421497 11 0
data-in/Linux_mb_200411170730 0100644 0001755 0000024 00000000155 10146651135 014020 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170730 0100644 0001755 0000024 00000000166 10146651135 015060 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170730 0100644 0001755 0000024 00000000113 10146651135 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.03 0.03 0.00 4 26 231
data-in/Linux_r1z_200411170730 0100644 0001755 0000024 00000000311 10146651137 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.13 0.04 84 34 23 165 58 3 674 472 15 862
data-in/Linux_r1q_200411170730 0100644 0001755 0000024 00000000272 10146651135 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.64 2.52 2.59 89 78 42 133 25 1103 717 12 2195
data-in/Linux_r1m2_200411170730 0100644 0001755 0000024 00000000315 10146651136 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.10 0.08 86 81 34 137 20 3 4114 2842 107 2666
data-in/Linux_r1m1_200411170730 0100644 0001755 0000024 00000000313 10146651136 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.12 0.09 69 73 29 179 51 3 1657 812 49 4889
data-in/Linux_r1f_200411170730 0100644 0001755 0000024 00000000275 10146651142 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.29 1.45 1.43 87 86 46 199 20 10022 15048 15 9063
data-in/Linux_r1a1_200411170730 0100644 0001755 0000024 00000000271 10146651135 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.35 0.44 0.37 83 35 14 148 45 914 604 55 3363
data-in/Linux_r1a_200411170730 0100644 0001755 0000024 00000000316 10146651140 014100 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.25 1.29 91 33 27 184 20 23 5784 4828 103 7891
data-in/Linux_streamguys1_200411170730 0100644 0001755 0000024 00000000223 10146651137 015704 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.06 1.37 1.09 49 60 612 45 8 3 0
data-in/Linux_steve_200411170730 0100644 0001755 0000024 00000000113 10146651137 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170730 0100644 0001755 0000024 00000000224 10146651137 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.25 0.31 0.27 78 47 144 38 1 12 0
data-in/Linux_hwnode5_200411170730 0100644 0001755 0000024 00000000225 10146651135 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.06 0.04 0.00 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170730 0100644 0001755 0000024 00000000224 10146651135 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.83 1.82 1.37 73 17 821 95 27 3 0
data-in/Linux_hwnode2_200411170730 0100644 0001755 0000024 00000000225 10146651133 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.03 0.00 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170730 0100644 0001755 0000024 00000000000 10146651131 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170730 0100644 0001755 0000024 00000000611 10146651134 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 333 1 254 20582400 162299904 232460288 1551978496 138477568 1976041231 1671222862
data-in/FreeBSD_psa4_200411170730 0100644 0001755 0000024 00000000535 10146651135 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137236480 104206336 45060096 32768 104563219 122977270
data-in/FreeBSD_psa3_200411170730 0100644 0001755 0000024 00000000623 10146651135 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.24 0.26 0.25 21 2 10 24 2 137 39 7 1 2952 8555 2084 25 4790 945217536 329064448 668737536 132014080 23400448 1544751062 1369654847
data-in/FreeBSD_psa2_200411170730 0100644 0001755 0000024 00000000622 10146651134 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.10 0.13 13 0 1 34 0 150 76 7 1 1442 1812 5487 0 335 970297344 274558976 320565248 520175616 20852736 2140148755 1337851617
data-in/FreeBSD_pinky_200411170730 0100644 0001755 0000024 00000000570 10146651136 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.22 0.43 0.57 71 13 31 52 75 316 10 14 19 0 0 10752000 169844736 760774656 63729664 40681472 1097391805 3869887616 11 0
data-in/Linux_staging_200411170735 0100644 0001755 0000024 00000000166 10146651607 015071 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170735 0100644 0001755 0000024 00000000113 10146651606 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.06 0.02 4 26 229
data-in/Linux_r1z_200411170735 0100644 0001755 0000024 00000000311 10146651611 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.11 0.04 84 34 23 133 30 3 703 489 15 890
data-in/Linux_r1q_200411170735 0100644 0001755 0000024 00000000272 10146651610 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.81 2.90 2.75 89 78 42 122 20 1123 735 12 2262
data-in/Linux_r1m2_200411170735 0100644 0001755 0000024 00000000315 10146651607 014212 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.09 0.08 86 81 34 131 20 3 4145 2866 110 2713
data-in/Linux_r1m1_200411170735 0100644 0001755 0000024 00000000313 10146651611 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.54 0.23 0.13 69 73 29 178 51 3 1675 818 53 4971
data-in/Linux_r1f_200411170735 0100644 0001755 0000024 00000000275 10146651616 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.47 1.51 1.45 87 86 46 206 20 10060 15112 15 9081
data-in/Linux_r1a1_200411170735 0100644 0001755 0000024 00000000271 10146651607 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.41 0.40 0.37 83 35 14 155 47 943 615 55 3480
data-in/Linux_r1a_200411170735 0100644 0001755 0000024 00000000316 10146651613 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.05 1.58 1.39 91 33 27 193 20 23 5801 4846 104 7918
data-in/Linux_streamguys1_200411170735 0100644 0001755 0000024 00000000223 10146651612 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.50 0.84 0.93 49 60 612 45 8 3 0
data-in/Linux_steve_200411170735 0100644 0001755 0000024 00000000113 10146651611 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.02 0.00 73 63 2376
data-in/Linux_mnode_200411170735 0100644 0001755 0000024 00000000224 10146651610 014524 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.12 0.24 0.25 78 47 134 38 1 12 0
data-in/Linux_hwnode5_200411170735 0100644 0001755 0000024 00000000225 10146651610 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 493 131 15 3 0
data-in/Linux_hwnode3_200411170735 0100644 0001755 0000024 00000000224 10146651611 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.52 2.12 1.66 73 17 805 95 27 3 0
data-in/Linux_hwnode2_200411170735 0100644 0001755 0000024 00000000225 10146651610 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170735 0100644 0001755 0000024 00000000000 10146651604 014210 0 ustar djh staff data-in/FreeBSD_r4p_200411170735 0100644 0001755 0000024 00000000611 10146651610 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 256 23916544 162377728 229048320 1551978496 138477568 1976347612 1673479631
data-in/FreeBSD_psa4_200411170735 0100644 0001755 0000024 00000000535 10146651610 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137236480 104202240 45060096 32768 104619912 122992242
data-in/FreeBSD_psa3_200411170735 0100644 0001755 0000024 00000000623 10146651610 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.24 0.25 0.24 21 2 10 24 2 130 42 7 1 3000 8689 2096 25 4965 919613440 329617408 684523520 137986048 26693632 1547946474 1385958290
data-in/FreeBSD_psa2_200411170735 0100644 0001755 0000024 00000000622 10146651610 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.59 0.61 0.37 13 0 1 34 0 134 73 7 1 1498 1867 5746 0 352 974950400 275148800 313200640 522055680 21094400 2150869094 1434415657
data-in/FreeBSD_pinky_200411170735 0100644 0001755 0000024 00000000570 10146651610 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.07 0.45 0.58 71 13 31 52 75 306 10 14 19 0 0 17059840 170389504 752435200 76935168 26583040 1102778722 3875165030 11 0
data-in/Linux_mb_200411170735 0100644 0001755 0000024 00000000155 10146651606 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.07 0.02 0.00 13 16 88 15 1
data-in/Linux_mb_200411170740 0100644 0001755 0000024 00000000155 10146652262 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 72 15 1
data-in/Linux_staging_200411170740 0100644 0001755 0000024 00000000166 10146652262 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170740 0100644 0001755 0000024 00000000113 10146652265 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 231
data-in/Linux_r1z_200411170740 0100644 0001755 0000024 00000000311 10146652266 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.17 0.09 84 34 23 137 30 3 741 492 15 920
data-in/Linux_r1q_200411170740 0100644 0001755 0000024 00000000272 10146652266 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.91 2.76 2.70 89 78 42 131 23 1147 750 13 2348
data-in/Linux_r1m2_200411170740 0100644 0001755 0000024 00000000315 10146652265 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.15 0.08 0.08 86 81 34 137 24 3 4191 2932 111 2762
data-in/Linux_r1m1_200411170740 0100644 0001755 0000024 00000000313 10146652266 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.13 0.11 69 73 29 178 51 3 1721 831 59 5046
data-in/Linux_r1f_200411170740 0100644 0001755 0000024 00000000275 10146652271 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.43 1.50 1.45 87 86 46 211 20 10095 15185 15 9095
data-in/Linux_r1a1_200411170740 0100644 0001755 0000024 00000000271 10146652263 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.33 0.40 0.38 83 35 14 144 39 957 624 57 3598
data-in/Linux_r1a_200411170740 0100644 0001755 0000024 00000000316 10146652270 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.34 1.34 91 33 27 187 20 23 5816 4852 104 7939
data-in/Linux_streamguys1_200411170740 0100644 0001755 0000024 00000000223 10146652266 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.72 0.75 0.84 49 60 612 45 8 3 0
data-in/Linux_steve_200411170740 0100644 0001755 0000024 00000000113 10146652265 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170740 0100644 0001755 0000024 00000000224 10146652265 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.19 0.26 0.26 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170740 0100644 0001755 0000024 00000000225 10146652264 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170740 0100644 0001755 0000024 00000000224 10146652265 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.52 1.25 1.43 73 17 799 98 27 3 0
data-in/Linux_hwnode2_200411170740 0100644 0001755 0000024 00000000225 10146652266 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.10 0.08 0.02 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170740 0100644 0001755 0000024 00000000000 10146652261 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170740 0100644 0001755 0000024 00000000611 10146652264 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 258 24145920 162181120 229015552 1551978496 138477568 1976659361 1676811436
data-in/FreeBSD_psa4_200411170740 0100644 0001755 0000024 00000000535 10146652264 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104625309 122999048
data-in/FreeBSD_psa3_200411170740 0100644 0001755 0000024 00000000623 10146652265 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.26 0.24 21 2 10 24 2 141 42 7 1 3058 8851 2116 25 5136 881897472 331407360 709681152 148017152 27430912 1552941983 1411610150
data-in/FreeBSD_psa2_200411170740 0100644 0001755 0000024 00000000622 10146652264 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.26 0.27 13 0 1 34 0 142 73 7 1 1532 1930 5874 0 369 973234176 286076928 311930880 513978368 21229568 2161602508 1538383343
data-in/FreeBSD_pinky_200411170740 0100644 0001755 0000024 00000000570 10146652265 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.34 0.51 71 13 31 52 75 312 10 14 19 0 0 13828096 170741760 753901568 56320000 48611328 1108363356 3880376707 11 0
data-in/Linux_staging_200411170745 0100644 0001755 0000024 00000000166 10146652740 015071 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.01 0.01 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170745 0100644 0001755 0000024 00000000113 10146652740 014271 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.22 0.07 0.02 4 26 234
data-in/Linux_r1z_200411170745 0100644 0001755 0000024 00000000311 10146652743 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.17 0.10 84 34 23 152 35 3 765 497 15 951
data-in/Linux_r1q_200411170745 0100644 0001755 0000024 00000000272 10146652743 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.37 2.43 2.56 89 78 42 132 21 1185 775 13 2425
data-in/Linux_r1m2_200411170745 0100644 0001755 0000024 00000000315 10146652741 014213 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.09 0.08 86 81 34 141 22 3 4235 2969 112 2808
data-in/Linux_r1m1_200411170745 0100644 0001755 0000024 00000000313 10146652741 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.64 0.26 0.14 69 73 29 176 51 3 1776 850 63 5121
data-in/Linux_r1f_200411170745 0100644 0001755 0000024 00000000275 10146652747 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.44 1.45 1.44 87 86 46 204 20 10123 15243 15 9115
data-in/Linux_r1a1_200411170745 0100644 0001755 0000024 00000000271 10146652743 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.60 0.41 0.37 83 35 14 156 46 982 647 59 3715
data-in/Linux_r1a_200411170745 0100644 0001755 0000024 00000000316 10146652744 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.47 1.39 1.36 91 33 27 187 20 23 5829 4870 104 7964
data-in/Linux_streamguys1_200411170745 0100644 0001755 0000024 00000000223 10146652741 015714 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.66 1.19 0.95 49 60 612 45 8 3 0
data-in/Linux_steve_200411170745 0100644 0001755 0000024 00000000113 10146652741 014554 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170745 0100644 0001755 0000024 00000000224 10146652742 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.64 0.40 0.30 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170745 0100644 0001755 0000024 00000000225 10146652741 015003 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170745 0100644 0001755 0000024 00000000224 10146652741 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.65 1.11 73 17 804 96 27 3 0
data-in/FreeBSD_mb2_200411170745 0100644 0001755 0000024 00000000000 10146652735 014217 0 ustar djh staff data-in/FreeBSD_psa4_200411170745 0100644 0001755 0000024 00000000535 10146652741 014420 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104640708 123006620
data-in/FreeBSD_psa2_200411170745 0100644 0001755 0000024 00000000622 10146652741 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.13 0.20 13 0 1 34 0 135 76 7 1 1569 1996 6043 0 388 970072064 288083968 312680448 514326528 21286912 2170983299 1606385693
data-in/FreeBSD_pinky_200411170745 0100644 0001755 0000024 00000000570 10146652741 014702 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.40 0.50 71 13 31 52 75 312 10 14 19 0 0 14524416 171479040 751853568 71188480 34357248 1113526607 3885787462 11 0
data-in/Linux_mb_200411170745 0100644 0001755 0000024 00000000155 10146652740 014031 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.08 0.03 0.01 13 16 80 15 1
data-in/Linux_hwnode2_200411170745 0100644 0001755 0000024 00000000225 10146652741 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.04 0.00 81 15 768 224 23 4 0
data-in/FreeBSD_r4p_200411170745 0100644 0001755 0000024 00000000611 10146652741 014251 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 260 22745088 162275328 230334464 1551966208 138477568 1977041213 1680749761
data-in/FreeBSD_psa3_200411170745 0100644 0001755 0000024 00000000623 10146652740 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.36 0.30 0.25 21 2 10 24 2 131 36 9 1 3136 8985 2132 30 5320 900296704 328683520 670228480 169472000 29753344 1561270420 1425319769
data-in/Linux_mb_200411170750 0100644 0001755 0000024 00000000155 10146653413 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170750 0100644 0001755 0000024 00000000166 10146653412 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170750 0100644 0001755 0000024 00000000113 10146653414 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 223
data-in/Linux_r1z_200411170750 0100644 0001755 0000024 00000000311 10146653415 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.05 0.07 84 34 23 153 51 3 791 505 15 979
data-in/Linux_r1q_200411170750 0100644 0001755 0000024 00000000272 10146653415 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.11 2.98 2.76 89 78 42 130 24 1229 791 13 2506
data-in/Linux_r1m2_200411170750 0100644 0001755 0000024 00000000315 10146653414 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.09 0.08 86 81 34 130 21 3 4290 3012 114 2859
data-in/Linux_r1m1_200411170750 0100644 0001755 0000024 00000000313 10146653415 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.15 0.12 69 73 29 172 51 3 1811 858 67 5185
data-in/Linux_r1f_200411170750 0100644 0001755 0000024 00000000275 10146653422 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.75 1.51 1.46 87 86 46 208 20 10155 15282 15 9137
data-in/Linux_r1a1_200411170750 0100644 0001755 0000024 00000000272 10146653415 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.50 0.49 0.41 83 35 14 140 37 1011 651 59 3833
data-in/Linux_r1a_200411170750 0100644 0001755 0000024 00000000316 10146653422 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.12 1.59 1.43 91 33 27 186 20 23 5858 4887 105 7986
data-in/Linux_streamguys1_200411170750 0100644 0001755 0000024 00000000223 10146653416 015710 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.63 0.80 0.82 49 60 621 45 8 3 0
data-in/Linux_steve_200411170750 0100644 0001755 0000024 00000000113 10146653416 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.02 0.00 73 63 2376
data-in/Linux_mnode_200411170750 0100644 0001755 0000024 00000000224 10146653414 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.22 0.34 0.29 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170750 0100644 0001755 0000024 00000000225 10146653415 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.03 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170750 0100644 0001755 0000024 00000000224 10146653413 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.48 0.61 0.97 73 17 804 98 27 3 0
data-in/Linux_hwnode2_200411170750 0100644 0001755 0000024 00000000225 10146653415 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170750 0100644 0001755 0000024 00000000000 10146653410 014202 0 ustar djh staff data-in/FreeBSD_r4p_200411170750 0100644 0001755 0000024 00000000611 10146653414 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 262 22159360 162312192 230912000 1551937536 138477568 1977319061 1684369401
data-in/FreeBSD_psa4_200411170750 0100644 0001755 0000024 00000000535 10146653414 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104646881 123013746
data-in/FreeBSD_psa2_200411170750 0100644 0001755 0000024 00000000622 10146653413 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.61 0.79 0.43 13 0 1 34 0 147 84 7 1 1589 2064 6155 0 406 965521408 290029568 312418304 516550656 21929984 2182003471 1726150417
data-in/FreeBSD_pinky_200411170750 0100644 0001755 0000024 00000000570 10146653414 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.12 0.33 0.46 71 13 31 52 75 315 10 14 19 0 0 13524992 171155456 752529408 73879552 32313344 1118965817 3891226172 11 0
data-in/FreeBSD_psa3_200411170750 0100644 0001755 0000024 00000000623 10146653414 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.49 0.36 0.28 21 2 10 24 2 129 37 9 1 3194 9151 2144 31 5503 859676672 329469952 689881088 191045632 28360704 1574190443 1439481955
data-in/Linux_staging_200411170755 0100644 0001755 0000024 00000000166 10146654067 015076 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170755 0100644 0001755 0000024 00000000113 10146654067 014276 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 216
data-in/Linux_r1z_200411170755 0100644 0001755 0000024 00000000312 10146654072 014143 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.05 0.06 84 34 23 188 83 3 802 511 15 1012
data-in/Linux_r1q_200411170755 0100644 0001755 0000024 00000000272 10146654072 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.34 2.56 2.63 89 78 42 127 23 1268 805 14 2603
data-in/Linux_r1m1_200411170755 0100644 0001755 0000024 00000000313 10146654072 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.10 0.09 69 73 29 173 51 3 1839 876 71 5263
data-in/Linux_r1f_200411170755 0100644 0001755 0000024 00000000275 10146654076 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.59 1.67 1.54 87 86 46 204 20 10201 15344 15 9158
data-in/Linux_r1a1_200411170755 0100644 0001755 0000024 00000000272 10146654070 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.54 0.57 0.46 83 35 14 141 39 1055 670 61 3958
data-in/Linux_r1a_200411170755 0100644 0001755 0000024 00000000316 10146654074 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.33 1.43 1.40 91 33 27 184 20 23 5885 4902 105 8009
data-in/Linux_steve_200411170755 0100644 0001755 0000024 00000000113 10146654071 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2377
data-in/Linux_streamguys1_200411170755 0100644 0001755 0000024 00000000223 10146654073 015715 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.19 0.88 0.81 49 60 622 45 8 3 0
data-in/Linux_mnode_200411170755 0100644 0001755 0000024 00000000224 10146654071 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.32 0.33 0.29 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170755 0100644 0001755 0000024 00000000225 10146654071 015002 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170755 0100644 0001755 0000024 00000000225 10146654071 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.89 0.73 0.90 73 17 805 101 27 3 0
data-in/FreeBSD_mb2_200411170755 0100644 0001755 0000024 00000000000 10146654065 014216 0 ustar djh staff data-in/FreeBSD_r4p_200411170755 0100644 0001755 0000024 00000000611 10146654070 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 264 22056960 162320384 231006208 1551937536 138477568 1977544803 1686158878
data-in/FreeBSD_psa4_200411170755 0100644 0001755 0000024 00000000535 10146654070 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104653362 123021314
data-in/FreeBSD_psa3_200411170755 0100644 0001755 0000024 00000000623 10146654070 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.07 0.17 0.21 21 2 10 24 2 132 41 9 1 3284 9283 2178 32 5679 848072704 311656448 691011584 219693056 28000256 1580251228 1453790025
data-in/FreeBSD_psa2_200411170755 0100644 0001755 0000024 00000000622 10146654071 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.21 0.49 0.40 13 0 1 34 0 148 86 7 1 1619 2115 6215 0 422 962822144 290762752 311996416 518086656 22781952 2192324627 1848272036
data-in/FreeBSD_pinky_200411170755 0100644 0001755 0000024 00000000570 10146654071 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.19 0.46 0.52 71 13 31 52 75 306 10 14 19 0 0 15544320 171462656 751312896 75362304 29720576 1124329817 3896650665 11 0
data-in/Linux_mb_200411170755 0100644 0001755 0000024 00000000155 10146654067 014036 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_hwnode2_200411170755 0100644 0001755 0000024 00000000225 10146654070 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 765 225 23 4 0
data-in/Linux_r1m2_200411170755 0100644 0001755 0000024 00000000315 10146654071 014212 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.07 0.08 86 81 34 129 20 3 4339 3065 114 2912
data-in/Linux_mb_200411170800 0100644 0001755 0000024 00000000155 10146654545 014026 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/Linux_psa1_200411170800 0100644 0001755 0000024 00000000113 10146654545 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.33 0.07 0.02 4 26 214
bin/ 0040755 0001755 0000024 00000000000 10104176311 010254 5 ustar djh staff bin/check-Linux 0100755 0001755 0000024 00000005310 10103460735 012355 0 ustar djh staff #!/usr/bin/perl
# Check Load
$loadavg=`/usr/bin/uptime`;
chomp $loadavg;
$loadavg =~ s/.*: //;
$loadavg =~ s/,//g;
$line1="load1 load5 load15";
$line2=$loadavg;
# Check Disks
@df=`df -k`;
for (@df) {
$_ =~ /.*?(\d+)\%\s+(\/\S*)/;
my $dsk = $2; my $per = $1;
if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/dev/shm' ) {
$line1 .= " disk-$dsk";
$line2 .= " $per";
}
}
## Check process count
$numproc=`ps ax | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
$line1 .= " numproc-total";
$line2 .= " $numproc";
## Check process count
$numproc=`ps auxww | awk '\$1 == "httpd" || \$1 == "apache" {print}' | grep -c /httpd`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpd";
$line2 .= " $numproc";
}
## Check process count
#$numproc=`ps auxww | grep -c httpsd\$`;
#chomp $numproc;
#$numproc =~ s/\s+//;
#if( $numproc > 0 ) {
# $line1 .= " numproc-httpsd";
# $line2 .= " $numproc";
#}
## Check process count
$numproc=`ps auxww | awk '\$1 == "mysql" || \$1 == "#27" {print}' | grep -c /mysqld`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-mysqld";
$line2 .= " $numproc";
}
## Sendmail count
$numsuccess=`grep -c 'sendmail.*Sent' /var/log/maillog`;
chomp $numsuccess; $numsuccess =~ s/\s+//;
$numdeferral=`grep -c 'sendmail.*Deferred:' /var/log/maillog`;
chomp $numdeferral; $numdeferral =~ s/\s+//;
#$numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
#chomp $numfailure; $numfailure =~ s/\s+//;
if( $numsuccess > 0 || $numdeferral > 0 ) {
$line1 .= " sendmail-success sendmail-deferral";
$line2 .= " $numsuccess $numdeferral";
}
$numimapd=`grep -c 'imapd.*Login user=' /var/log/maillog`;
chomp $numimapd; $numimapd =~ s/\s+//;
$numpop3d=`grep -c 'POP login by user' /var/log/maillog`;
chomp $numpop3d; $numpop3d =~ s/\s+//;
if( $numimapd > 0 || $numpop3d > 0 ) {
$line1 .= " connect-imapd connect-pop3d";
$line2 .= " $numimapd $numpop3d";
}
##@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`;
##foreach $n (0 .. @mems) { chomp $mems[$n]; }
##$line1 .= " memtotal meminuse vmtotal vminuse";
### Actually, vminuse = vmtotal - vmFREE ;)
##$mems[3] = $mems[2] - $mems[3];
##$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]";
#@mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`;
#foreach $n (0 .. @mems) { chomp $mems[$n]; }
#foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; }
#$line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache";
#$line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]";
# Print out lines
print $line1, "\n";
print $line2, "\n";
bin/check-FreeBSD 0100755 0001755 0000024 00000006245 10100252324 012466 0 ustar djh staff #!/usr/bin/perl
# Check Load
$loadavg=`/sbin/sysctl vm.loadavg`;
chomp $loadavg;
$loadavg =~ s/vm.loadavg: { //;
$loadavg =~ s/ }//;
$line1="load1 load5 load15";
$line2=$loadavg;
# Check Disks
@df=`df -k`;
for (@df) {
$_ =~ /.*?(\d+)\%\s+(\/\S*)/;
my $dsk = $2; my $per = $1;
if( $dsk =~ /^\// && $dsk ne '/proc' && $dsk ne '/usr/compat/linux/proc' ) {
$line1 .= " disk-$dsk";
$line2 .= " $per";
}
}
# Check process count
$numproc=`ps ax | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
$line1 .= " numproc-total";
$line2 .= " $numproc";
# Check process count
$numproc=`ps auxww | awk '\$1 == "www" || \$1 == "apache" {print}' | grep httpd | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpd";
$line2 .= " $numproc";
}
# Check process count
$numproc=`ps auxww | awk '\$1 == "www" || \$1 == "psaadm" {print}' | grep httpsd | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-httpsd";
$line2 .= " $numproc";
}
# Check process count
$numproc=`ps -U mysql | grep mysqld | wc -l`;
chomp $numproc;
$numproc =~ s/\s+//;
if( $numproc > 0 ) {
$line1 .= " numproc-mysqld";
$line2 .= " $numproc";
}
# Qmail count
$numsuccess=`grep qmail:.\*delivery.\*success: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null| wc -l`;
chomp $numsuccess; $numsuccess =~ s/\s+//;
$numdeferral=`grep qmail:.\*delivery.\*deferral: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
chomp $numdeferral; $numdeferral =~ s/\s+//;
$numfailure=`grep qmail:.\*delivery.\*failure: /var/log/maillog /usr/local/psa/var/log/maillog 2>/dev/null | wc -l`;
chomp $numfailure; $numfailure =~ s/\s+//;
#if( $numsuccess > 0 || $numdeferral > 0 || $numfailure > 0 ) {
$line1 .= " qmail-success qmail-deferral qmail-failure";
$line2 .= " $numsuccess $numdeferral $numfailure";
#}
$numimapd=`grep "imapd: Connection" /usr/local/psa/var/log/maillog | wc -l`;
chomp $numimapd; $numimapd =~ s/\s+//;
$numpop3d=`grep "pop3d: Connection" /usr/local/psa/var/log/maillog | wc -l`;
chomp $numpop3d; $numpop3d =~ s/\s+//;
if( $numimapd > 0 || $numpop3d > 0 ) {
$line1 .= " connect-imapd connect-pop3d";
$line2 .= " $numimapd $numpop3d";
}
#@mems=`/sbin/sysctl -n hw.physmem hw.usermem vm.kvm_size vm.kvm_free`;
#foreach $n (0 .. @mems) { chomp $mems[$n]; }
#$line1 .= " memtotal meminuse vmtotal vminuse";
## Actually, vminuse = vmtotal - vmFREE ;)
#$mems[3] = $mems[2] - $mems[3];
#$line2 .= " $mems[0] $mems[1] $mems[2] $mems[3]";
@mems=`/sbin/sysctl -n vm.stats.vm.v_page_size vm.stats.vm.v_free_count vm.stats.vm.v_wire_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_cache_count`;
foreach $n (0 .. @mems) { chomp $mems[$n]; }
foreach $n (1 .. @mems) { $mems[$n] *= $mems[0]; }
$line1 .= " mem_free mem_wire mem_active mem_inactive mem_cache";
$line2 .= " $mems[1] $mems[2] $mems[3] $mems[4] $mems[5]";
# Network
@netstat=`netstat -inb`;
for (@netstat) {
my @stat = split(/\s+/, $_);
if( $_ !~ /^lo\d/ && $stat[2] =~ /^$/ ) {
if( $stat[4] > 0 || $stat[6] > 0 ) {
$line1 .= " $stat[0]-Ibytes $stat[0]-Obytes";
$line2 .= " $stat[6] $stat[9]";
}
}
}
# Print out lines
print $line1, "\n";
print $line2, "\n";
bin/install-key 0100755 0001755 0000024 00000000120 10070345225 012430 0 ustar djh staff #!/bin/sh
cat /root/.ssh/pinky.pub | ssh root@$1 "cat >> .ssh/authorized_keys"
bin/install-check-FreeBSD 0100755 0001755 0000024 00000000213 10070346252 014131 0 ustar djh staff #!/bin/sh
ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin
scp -i /root/.ssh/pinky bin/check-FreeBSD root@$1:/usr/local/sc/bin/
bin/install-check-Linux 0100755 0001755 0000024 00000000211 10073563410 014014 0 ustar djh staff #!/bin/sh
ssh -i /root/.ssh/pinky root@$1 mkdir -p /usr/local/sc/bin
scp -i /root/.ssh/pinky bin/check-Linux root@$1:/usr/local/sc/bin/
data-in/ 0040755 0001755 0000024 00000000000 10146731160 011026 5 ustar djh staff data-in/Linux_staging_200411170405 0100644 0001755 0000024 00000000166 10146621120 015046 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 24 0
data-in/Linux_psa1_200411170405 0100644 0001755 0000024 00000000113 10146621120 014246 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.14 0.28 0.12 4 26 231
data-in/Linux_r1z_200411170405 0100644 0001755 0000024 00000000302 10146621121 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.89 0.93 0.35 84 34 23 126 16 3 1 1 0 2
data-in/Linux_r1m2_200411170405 0100644 0001755 0000024 00000000312 10146621120 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 132 20 3 1606 738 36 997
data-in/Linux_r1m1_200411170405 0100644 0001755 0000024 00000000312 10146621120 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.14 0.16 69 72 29 147 32 3 575 299 18 1708
data-in/Linux_r1a1_200411170405 0100644 0001755 0000024 00000000275 10146621124 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.98 0.98 0.49 83 38 15 341 26 7654 4369 385 35903
data-in/Linux_r1a_200411170405 0100644 0001755 0000024 00000000315 10146621124 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.88 1.52 0.97 91 32 27 186 20 21 5106 4076 85 6856
data-in/Linux_streamguys1_200411170405 0100644 0001755 0000024 00000000223 10146621121 015671 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.44 0.54 0.58 49 60 630 49 8 3 0
data-in/Linux_mnode_200411170405 0100644 0001755 0000024 00000000224 10146621121 014510 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.60 0.89 0.53 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170405 0100644 0001755 0000024 00000000225 10146621120 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.00 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170405 0100644 0001755 0000024 00000000225 10146621121 014756 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.39 0.81 0.90 73 17 837 101 27 3 0
data-in/FreeBSD_mb2_200411170405 0100644 0001755 0000024 00000000000 10146621114 014173 0 ustar djh staff data-in/FreeBSD_r4p_200411170405 0100644 0001755 0000024 00000000611 10146621116 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.03 0.00 9 0 0 2 0 75 10 8 1 6 0 273 1 152 23408640 158674944 232095744 1551421440 140197888 1957971122 1531140749
data-in/FreeBSD_psa4_200411170405 0100644 0001755 0000024 00000000535 10146621121 014375 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 103992784 122644042
data-in/FreeBSD_psa3_200411170405 0100644 0001755 0000024 00000000627 10146621121 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.26 1.28 1.23 21 2 10 28 2 140 34 9 1 12725 23507 7805 2429 67428 4448256 351891456 1101217792 566853632 74022912 1241077552 1455077272
data-in/FreeBSD_psa2_200411170405 0100644 0001755 0000024 00000000631 10146621121 014370 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.15 0.14 13 0 1 34 0 128 69 7 1 13078 17554 56107 500 6167 1335971840 297816064 345042944 110354432 17264640 1811408573 2515647311
data-in/FreeBSD_pinky_200411170405 0100644 0001755 0000024 00000000566 10146621120 014663 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.45 0.59 71 13 31 52 75 310 10 14 4 0 0 12263424 170328064 744775680 72097792 43937792 828846410 3646748722 11 0
data-in/Linux_mb_200411170405 0100644 0001755 0000024 00000000155 10146621120 014006 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.42 0.35 0.14 13 16 80 15 1
data-in/Linux_r1q_200411170405 0100644 0001755 0000024 00000000276 10146621121 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.62 1.85 1.65 89 80 42 153 20 11771 5997 186 29021
data-in/Linux_r1f_200411170405 0100644 0001755 0000024 00000000274 10146621126 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.21 1.25 87 85 46 218 20 8544 12813 15 8672
data-in/Linux_steve_200411170405 0100644 0001755 0000024 00000000113 10146621122 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_hwnode2_200411170405 0100644 0001755 0000024 00000000225 10146621121 014755 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.14 0.09 81 15 767 233 23 4 0
data-in/Linux_mb_200411170410 0100644 0001755 0000024 00000000155 10146621574 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.08 0.23 0.14 13 16 80 15 1
data-in/Linux_staging_200411170410 0100644 0001755 0000024 00000000166 10146621574 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 24 0
data-in/Linux_psa1_200411170410 0100644 0001755 0000024 00000000113 10146621573 014256 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.01 0.10 0.08 4 26 230
data-in/Linux_r1z_200411170410 0100644 0001755 0000024 00000000305 10146621600 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.44 1.72 0.82 84 34 23 125 16 3 19 17 2 24
data-in/Linux_r1q_200411170410 0100644 0001755 0000024 00000000276 10146621577 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.21 1.50 1.54 89 80 42 154 20 11801 6005 187 29079
data-in/Linux_r1m2_200411170410 0100644 0001755 0000024 00000000313 10146621575 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.07 0.08 86 81 34 131 20 3 1674 772 37 1035
data-in/Linux_r1m1_200411170410 0100644 0001755 0000024 00000000312 10146621575 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.12 0.14 69 72 29 146 32 3 593 313 18 1775
data-in/Linux_r1a1_200411170410 0100644 0001755 0000024 00000000263 10146621575 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.57 1.45 0.83 83 34 14 132 19 8 16 0 42
data-in/Linux_r1a_200411170410 0100644 0001755 0000024 00000000315 10146621600 014070 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.29 1.01 91 32 27 183 20 21 5125 4098 85 6882
data-in/Linux_streamguys1_200411170410 0100644 0001755 0000024 00000000223 10146621576 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.68 1.58 1.00 49 60 638 50 8 3 0
data-in/Linux_steve_200411170410 0100644 0001755 0000024 00000000113 10146621576 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_mnode_200411170410 0100644 0001755 0000024 00000000224 10146621576 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.62 1.27 0.78 79 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170410 0100644 0001755 0000024 00000000225 10146621575 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.27 0.11 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170410 0100644 0001755 0000024 00000000224 10146621574 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.82 0.99 0.96 73 17 790 95 27 3 0
data-in/Linux_hwnode2_200411170410 0100644 0001755 0000024 00000000225 10146621576 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.17 0.11 81 15 763 233 23 4 0
data-in/FreeBSD_mb2_200411170410 0100644 0001755 0000024 00000000000 10146621571 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170410 0100644 0001755 0000024 00000000611 10146621574 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 155 22224896 158752768 233254912 1551368192 140197888 1958350765 1535658827
data-in/FreeBSD_psa4_200411170410 0100644 0001755 0000024 00000000535 10146621575 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 6 1811951616 137195520 104194048 45060096 32768 104001544 122652446
data-in/FreeBSD_psa3_200411170410 0100644 0001755 0000024 00000000627 10146621575 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.07 1.20 1.20 21 2 10 28 2 133 31 9 1 12763 23619 7827 2429 67551 4939776 315334656 1098469376 595861504 83832832 1242721164 1462627690
data-in/FreeBSD_psa2_200411170410 0100644 0001755 0000024 00000000631 10146621574 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.07 0.09 13 0 1 34 0 131 69 7 1 13110 17617 56212 500 6175 1330176000 298717184 346738688 115781632 15036416 1818125688 2586862393
data-in/FreeBSD_pinky_200411170410 0100644 0001755 0000024 00000000566 10146621575 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.40 0.55 71 13 31 52 75 308 10 14 4 0 0 12337152 170213376 747352064 74117120 39383040 834042194 3652072719 11 0
data-in/Linux_r1f_200411170410 0100644 0001755 0000024 00000000274 10146621607 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.16 1.20 1.24 87 85 46 214 20 8563 12874 15 8675
data-in/Linux_mb_200411170415 0100644 0001755 0000024 00000000155 10146622250 014014 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.09 0.09 13 16 86 15 1
data-in/Linux_staging_200411170415 0100644 0001755 0000024 00000000166 10146622247 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 24 0
data-in/Linux_psa1_200411170415 0100644 0001755 0000024 00000000113 10146622250 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.03 0.05 4 26 226
data-in/Linux_r1z_200411170415 0100644 0001755 0000024 00000000305 10146622251 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.36 2.08 1.22 84 34 23 140 31 3 27 29 2 47
data-in/Linux_r1q_200411170415 0100644 0001755 0000024 00000000276 10146622254 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.33 1.44 89 80 42 155 20 11840 6026 187 29128
data-in/Linux_r1m2_200411170415 0100644 0001755 0000024 00000000313 10146622251 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.13 0.09 86 81 34 139 20 3 1743 826 38 1078
data-in/Linux_r1m1_200411170415 0100644 0001755 0000024 00000000312 10146622252 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.19 0.17 69 73 29 162 32 3 610 328 18 1855
data-in/Linux_r1f_200411170415 0100644 0001755 0000024 00000000274 10146622255 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.18 1.18 1.21 87 85 46 214 20 8576 12937 15 8682
data-in/Linux_r1a1_200411170415 0100644 0001755 0000024 00000000265 10146622252 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.01 2.24 1.33 83 34 14 145 26 29 30 1 122
data-in/Linux_r1a_200411170415 0100644 0001755 0000024 00000000315 10146622252 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.23 1.05 91 32 27 183 20 21 5140 4109 86 6907
data-in/Linux_streamguys1_200411170415 0100644 0001755 0000024 00000000223 10146622252 015700 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.64 1.17 0.98 49 60 629 50 8 3 0
data-in/Linux_steve_200411170415 0100644 0001755 0000024 00000000113 10146622252 014540 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2364
data-in/Linux_mnode_200411170415 0100644 0001755 0000024 00000000224 10146622251 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.70 0.67 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170415 0100644 0001755 0000024 00000000225 10146622251 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.09 0.07 19 52 502 141 15 3 0
data-in/Linux_hwnode3_200411170415 0100644 0001755 0000024 00000000224 10146622250 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.93 1.17 1.07 73 17 784 95 27 3 0
data-in/FreeBSD_mb2_200411170415 0100644 0001755 0000024 00000000000 10146622244 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170415 0100644 0001755 0000024 00000000611 10146622247 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 160 22220800 158756864 233254912 1551368192 140197888 1958520667 1537599977
data-in/FreeBSD_psa4_200411170415 0100644 0001755 0000024 00000000535 10146622251 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104031847 122665396
data-in/FreeBSD_psa3_200411170415 0100644 0001755 0000024 00000000627 10146622270 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.50 1.31 1.23 21 2 10 28 2 143 32 9 1 12801 23769 7899 2429 67697 3489792 322084864 1105661952 568643584 98553856 1244733356 1470938076
data-in/FreeBSD_psa2_200411170415 0100644 0001755 0000024 00000000631 10146622250 014375 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.45 0.20 0.12 13 0 1 34 0 127 69 7 1 13148 17671 56308 500 6185 1312636928 303824896 351272960 126717952 11997184 1825379107 2658160146
data-in/FreeBSD_pinky_200411170415 0100644 0001755 0000024 00000000565 10146622251 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
1.86 0.80 0.69 71 13 31 52 75 312 10 14 4 0 0 7413760 171368448 744869888 81424384 38326272 844890795 3657596052 11 0
data-in/Linux_hwnode2_200411170415 0100644 0001755 0000024 00000000225 10146622252 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.15 0.10 81 15 771 233 23 4 0
data-in/Linux_mb_200411170420 0100644 0001755 0000024 00000000155 10146622725 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.03 0.07 13 16 79 15 1
data-in/Linux_staging_200411170420 0100644 0001755 0000024 00000000166 10146622724 015056 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.62 0.17 0.06 8 100 118 26 0
data-in/Linux_psa1_200411170420 0100644 0001755 0000024 00000000113 10146622722 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.03 0.03 4 26 237
data-in/Linux_r1z_200411170420 0100644 0001755 0000024 00000000305 10146622727 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.85 2.78 1.73 84 35 23 131 25 3 45 40 2 71
data-in/Linux_r1q_200411170420 0100644 0001755 0000024 00000000276 10146622730 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.92 1.97 1.70 89 80 42 153 20 11864 6037 187 29188
data-in/Linux_r1m2_200411170420 0100644 0001755 0000024 00000000313 10146622725 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.10 0.08 86 81 34 133 20 3 1809 871 41 1112
data-in/Linux_r1m1_200411170420 0100644 0001755 0000024 00000000312 10146622726 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.24 0.20 69 73 29 152 32 3 635 332 18 1928
data-in/Linux_r1f_200411170420 0100644 0001755 0000024 00000000274 10146622732 014111 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.20 1.21 87 85 46 210 20 8599 12974 15 8685
data-in/Linux_r1a1_200411170420 0100644 0001755 0000024 00000000265 10146622726 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.07 2.81 1.83 83 35 14 140 27 48 38 1 202
data-in/Linux_r1a_200411170420 0100644 0001755 0000024 00000000315 10146622731 014077 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.39 1.15 91 32 27 184 20 21 5147 4136 86 6935
data-in/Linux_streamguys1_200411170420 0100644 0001755 0000024 00000000223 10146622726 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.59 0.76 49 60 630 51 8 3 0
data-in/Linux_steve_200411170420 0100644 0001755 0000024 00000000113 10146622726 014542 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2368
data-in/Linux_mnode_200411170420 0100644 0001755 0000024 00000000224 10146622724 014517 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.51 0.59 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170420 0100644 0001755 0000024 00000000225 10146622725 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.07 0.06 19 52 507 141 15 3 0
data-in/Linux_hwnode3_200411170420 0100644 0001755 0000024 00000000225 10146622725 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 1.25 1.13 73 17 793 100 27 3 0
data-in/Linux_hwnode2_200411170420 0100644 0001755 0000024 00000000225 10146622725 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.05 0.07 81 15 774 234 23 4 0
data-in/FreeBSD_mb2_200411170420 0100644 0001755 0000024 00000000000 10146622721 014175 0 ustar djh staff data-in/FreeBSD_r4p_200411170420 0100644 0001755 0000024 00000000611 10146622723 014234 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 163 22855680 158765056 232611840 1551368192 140197888 1958783300 1540151622
data-in/FreeBSD_psa4_200411170420 0100644 0001755 0000024 00000000535 10146622725 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811951616 137195520 104194048 45060096 32768 104039590 122672266
data-in/FreeBSD_psa3_200411170420 0100644 0001755 0000024 00000000627 10146622727 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.69 1.49 1.33 21 2 10 29 2 153 32 9 1 12853 23893 7997 2433 67824 6656000 354484224 1092177920 568291328 76824576 1247058171 1476657447
data-in/FreeBSD_psa2_200411170420 0100644 0001755 0000024 00000000630 10146622725 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.17 0.18 0.12 13 0 1 34 0 145 66 7 1 13164 17762 56330 500 6193 926736384 307896320 337080320 522756096 11980800 1832338375 2751033160
data-in/FreeBSD_pinky_200411170420 0100644 0001755 0000024 00000000566 10146622725 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.45 0.56 71 13 31 52 75 311 10 14 4 0 0 17022976 170762240 744624128 78102528 32890880 855900232 3663202465 11 0
data-in/Linux_mnode_200411170425 0100644 0001755 0000024 00000000224 10146623400 014514 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.39 0.51 78 47 138 38 1 12 0
data-in/Linux_mb_200411170425 0100644 0001755 0000024 00000000155 10146623376 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.01 0.04 13 16 81 15 1
data-in/Linux_staging_200411170425 0100644 0001755 0000024 00000000166 10146623377 015070 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.05 0.72 0.32 8 100 119 26 0
data-in/Linux_psa1_200411170425 0100644 0001755 0000024 00000000113 10146623400 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.01 4 26 237
data-in/Linux_r1z_200411170425 0100644 0001755 0000024 00000000305 10146623400 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.63 2.56 1.91 84 35 23 122 16 3 57 57 2 94
data-in/Linux_r1q_200411170425 0100644 0001755 0000024 00000000276 10146623402 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 1.97 1.73 89 80 42 183 22 11887 6049 188 29247
data-in/Linux_r1m2_200411170425 0100644 0001755 0000024 00000000313 10146623400 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.04 0.06 86 81 34 133 20 3 1876 913 41 1157
data-in/Linux_r1m1_200411170425 0100644 0001755 0000024 00000000312 10146623400 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.12 0.15 69 73 29 151 32 3 659 344 18 2005
data-in/Linux_r1a1_200411170425 0100644 0001755 0000024 00000000265 10146623401 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.28 2.63 2.02 83 35 14 137 26 57 50 3 282
data-in/Linux_r1a_200411170425 0100644 0001755 0000024 00000000315 10146623403 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.08 1.22 1.15 91 32 27 189 20 21 5165 4150 86 6961
data-in/Linux_streamguys1_200411170425 0100644 0001755 0000024 00000000223 10146623401 015676 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.59 0.69 0.75 49 60 627 48 8 3 0
data-in/Linux_steve_200411170425 0100644 0001755 0000024 00000000113 10146623401 014536 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2373
data-in/Linux_hwnode5_200411170425 0100644 0001755 0000024 00000000225 10146623400 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.04 19 52 505 141 15 3 0
data-in/Linux_hwnode3_200411170425 0100644 0001755 0000024 00000000224 10146623400 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.11 1.15 1.11 73 17 780 95 27 3 0
data-in/Linux_hwnode2_200411170425 0100644 0001755 0000024 00000000225 10146623400 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.04 0.06 81 15 770 229 23 4 0
data-in/FreeBSD_mb2_200411170425 0100644 0001755 0000024 00000000000 10146623374 014207 0 ustar djh staff data-in/FreeBSD_r4p_200411170425 0100644 0001755 0000024 00000000611 10146623400 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 165 22409216 158793728 233033728 1551364096 140197888 1959056679 1542124385
data-in/FreeBSD_psa4_200411170425 0100644 0001755 0000024 00000000535 10146623377 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104045317 122679264
data-in/FreeBSD_psa3_200411170425 0100644 0001755 0000024 00000000627 10146623414 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.71 1.52 1.37 21 2 10 29 2 142 33 8 1 12889 24023 8031 2438 67955 3526656 365576192 1075662848 560795648 92872704 1249628049 1483666356
data-in/FreeBSD_psa2_200411170425 0100644 0001755 0000024 00000000630 10146623400 014373 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.57 0.64 0.34 13 0 1 34 0 155 76 7 1 13201 17814 56450 500 6201 916832256 322846720 343015424 511836160 11919360 1840362730 2824632206
data-in/FreeBSD_pinky_200411170425 0100644 0001755 0000024 00000000566 10146623400 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.44 0.56 71 13 31 52 75 305 10 14 4 0 0 16822272 171204608 743743488 79126528 32505856 861325203 3668148780 11 0
data-in/Linux_r1f_200411170425 0100644 0001755 0000024 00000000274 10146623405 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.48 1.27 1.21 87 85 46 215 20 8634 13018 15 8691
data-in/Linux_mb_200411170430 0100644 0001755 0000024 00000000155 10146624055 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.01 13 16 81 15 1
data-in/Linux_staging_200411170430 0100644 0001755 0000024 00000000166 10146624052 015053 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.04 0.98 0.54 8 100 119 26 0
data-in/Linux_psa1_200411170430 0100644 0001755 0000024 00000000113 10146624052 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 237
data-in/Linux_r1z_200411170430 0100644 0001755 0000024 00000000306 10146624056 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.14 2.64 2.09 84 35 23 128 18 3 75 69 2 115
data-in/Linux_r1m2_200411170430 0100644 0001755 0000024 00000000313 10146624056 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.18 0.06 0.06 86 81 34 141 20 3 1929 976 43 1198
data-in/Linux_r1m1_200411170430 0100644 0001755 0000024 00000000312 10146624055 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.20 0.13 0.14 69 73 29 162 32 3 689 361 18 2077
data-in/Linux_r1f_200411170430 0100644 0001755 0000024 00000000274 10146624062 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.32 1.25 1.21 87 85 46 208 20 8669 13067 15 8695
data-in/Linux_r1a1_200411170430 0100644 0001755 0000024 00000000265 10146624057 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.52 2.84 2.25 83 35 14 142 26 78 63 5 366
data-in/Linux_r1a_200411170430 0100644 0001755 0000024 00000000315 10146624060 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.18 1.22 1.17 91 32 27 182 20 21 5184 4165 87 6987
data-in/Linux_streamguys1_200411170430 0100644 0001755 0000024 00000000223 10146624054 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.16 0.84 0.76 49 60 627 48 8 3 0
data-in/Linux_steve_200411170430 0100644 0001755 0000024 00000000113 10146624056 014541 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2369
data-in/Linux_mnode_200411170430 0100644 0001755 0000024 00000000224 10146624055 014517 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.57 0.43 0.49 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170430 0100644 0001755 0000024 00000000225 10146624055 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
6.61 2.27 0.82 19 52 510 141 15 3 0
data-in/Linux_hwnode3_200411170430 0100644 0001755 0000024 00000000224 10146624056 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.76 1.09 1.10 73 17 801 96 27 3 0
data-in/Linux_hwnode2_200411170430 0100644 0001755 0000024 00000000225 10146624054 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.04 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170430 0100644 0001755 0000024 00000000000 10146624051 014174 0 ustar djh staff data-in/FreeBSD_r4p_200411170430 0100644 0001755 0000024 00000000611 10146624054 014234 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 279 1 166 22896640 158797824 232542208 1551364096 140197888 1959248452 1543888969
data-in/FreeBSD_psa4_200411170430 0100644 0001755 0000024 00000000535 10146624054 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104049880 122685282
data-in/FreeBSD_psa3_200411170430 0100644 0001755 0000024 00000000627 10146624055 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
2.27 1.80 1.52 21 2 10 29 2 139 32 9 1 12933 24121 8049 2438 68081 9863168 364273664 1097560064 533946368 92790784 1251408309 1490414994
data-in/FreeBSD_psa2_200411170430 0100644 0001755 0000024 00000000630 10146624056 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.46 0.36 0.27 13 0 1 34 0 140 72 7 1 13271 17842 56829 500 6207 873943040 329523200 367362048 523698176 11923456 1846661421 2876521363
data-in/FreeBSD_pinky_200411170430 0100644 0001755 0000024 00000000566 10146624055 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.19 0.36 0.49 71 13 31 52 75 304 10 14 4 0 0 10313728 168169472 748933120 83501056 32485376 866832380 3673573472 11 0
data-in/Linux_r1q_200411170430 0100644 0001755 0000024 00000000276 10146624061 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.59 2.81 2.13 89 80 42 286 20 11909 6072 188 29303
data-in/Linux_mb_200411170435 0100644 0001755 0000024 00000000155 10146624530 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 80 15 1
data-in/Linux_staging_200411170435 0100644 0001755 0000024 00000000166 10146624530 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.08 0.60 0.51 8 100 113 26 0
data-in/Linux_psa1_200411170435 0100644 0001755 0000024 00000000113 10146624530 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.11 0.10 0.04 4 26 233
data-in/Linux_r1m2_200411170435 0100644 0001755 0000024 00000000314 10146624531 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.10 0.08 86 81 34 138 20 3 2009 1032 45 1239
data-in/Linux_r1m1_200411170435 0100644 0001755 0000024 00000000312 10146624527 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.19 0.17 69 73 29 154 32 3 712 364 18 2157
data-in/Linux_r1f_200411170435 0100644 0001755 0000024 00000000274 10146624535 014122 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.37 1.25 87 85 46 210 20 8690 13130 15 8702
data-in/Linux_r1a1_200411170435 0100644 0001755 0000024 00000000265 10146624540 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.47 3.12 2.53 83 35 14 144 26 96 76 5 453
data-in/Linux_streamguys1_200411170435 0100644 0001755 0000024 00000000223 10146624532 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 0.99 0.80 49 60 626 47 8 3 0
data-in/Linux_steve_200411170435 0100644 0001755 0000024 00000000113 10146624532 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2370
data-in/Linux_mnode_200411170435 0100644 0001755 0000024 00000000224 10146624530 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.34 0.42 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170435 0100644 0001755 0000024 00000000225 10146624527 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.98 0.68 19 52 502 141 15 3 0
data-in/Linux_r1z_200411170435 0100644 0001755 0000024 00000000306 10146624531 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.21 2.49 2.18 84 35 23 123 16 3 89 78 4 133
data-in/Linux_hwnode3_200411170435 0100644 0001755 0000024 00000000224 10146624531 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.73 1.89 1.42 73 17 794 94 27 3 0
data-in/Linux_hwnode2_200411170435 0100644 0001755 0000024 00000000225 10146624530 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.02 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170435 0100644 0001755 0000024 00000000000 10146624524 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170435 0100644 0001755 0000024 00000000611 10146624530 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 285 1 169 22540288 158867456 232837120 1551355904 140197888 1959523048 1546432172
data-in/FreeBSD_psa4_200411170435 0100644 0001755 0000024 00000000535 10146624530 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811947520 137199616 104194048 45060096 32768 104072731 122698902
data-in/FreeBSD_psa3_200411170435 0100644 0001755 0000024 00000000616 10146624527 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.67 1.75 1.58 21 2 10 29 2 134 31 9 1 1246 3747 802 0 90 4096000 360603648 1085267968 586231808 62234624 1253059201 1496613909
data-in/FreeBSD_psa2_200411170435 0100644 0001755 0000024 00000000627 10146624530 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.73 0.51 13 0 1 34 0 154 73 7 1 13302 17929 56923 500 6216 843890688 323391488 345382912 583815168 9969664 1854323909 3017114188
data-in/FreeBSD_pinky_200411170435 0100644 0001755 0000024 00000000566 10146624530 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.22 0.35 0.46 71 13 31 52 75 291 10 14 4 0 0 12230656 170147840 745664512 83132416 32088064 872181185 3678962595 11 0
data-in/Linux_r1q_200411170435 0100644 0001755 0000024 00000000264 10146624531 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.30 3.07 2.48 89 77 42 125 21 27 10 0 30
data-in/Linux_r1a_200411170435 0100644 0001755 0000024 00000000315 10146624533 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.76 1.37 1.23 91 32 27 194 20 21 5203 4190 87 7014
data-in/Linux_mb_200411170440 0100644 0001755 0000024 00000000155 10146625204 014014 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.02 0.00 13 16 76 15 1
data-in/Linux_staging_200411170440 0100644 0001755 0000024 00000000166 10146625203 015053 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.21 0.36 8 100 113 26 0
data-in/Linux_psa1_200411170440 0100644 0001755 0000024 00000000113 10146625204 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.03 0.01 4 26 234
data-in/Linux_r1z_200411170440 0100644 0001755 0000024 00000000307 10146625204 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 1.20 1.73 84 34 23 124 16 3 100 84 4 149
data-in/Linux_r1q_200411170440 0100644 0001755 0000024 00000000264 10146625205 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.30 2.47 2.36 89 77 42 134 23 54 24 1 82
data-in/Linux_r1m2_200411170440 0100644 0001755 0000024 00000000314 10146625204 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.13 0.09 86 81 34 140 20 3 2091 1080 46 1281
data-in/Linux_r1m1_200411170440 0100644 0001755 0000024 00000000312 10146625204 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.23 0.17 0.16 69 73 29 153 32 3 734 387 18 2237
data-in/Linux_r1f_200411170440 0100644 0001755 0000024 00000000274 10146625210 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.25 1.22 87 85 46 213 20 8708 13172 15 8705
data-in/Linux_r1a1_200411170440 0100644 0001755 0000024 00000000266 10146625205 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.62 3.29 2.74 83 35 14 149 34 192 84 7 528
data-in/Linux_r1a_200411170440 0100644 0001755 0000024 00000000315 10146625206 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.28 1.22 91 32 27 190 20 21 5241 4211 87 7039
data-in/Linux_streamguys1_200411170440 0100644 0001755 0000024 00000000223 10146625204 015676 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.16 0.97 0.78 49 60 627 48 8 3 0
data-in/Linux_steve_200411170440 0100644 0001755 0000024 00000000113 10146625205 014537 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2370
data-in/Linux_mnode_200411170440 0100644 0001755 0000024 00000000224 10146625205 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.30 0.38 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170440 0100644 0001755 0000024 00000000225 10146625204 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.10 0.40 0.50 19 52 501 141 15 3 0
data-in/Linux_hwnode3_200411170440 0100644 0001755 0000024 00000000224 10146625204 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.20 1.43 1.34 73 17 785 94 27 3 0
data-in/Linux_hwnode2_200411170440 0100644 0001755 0000024 00000000225 10146625203 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170440 0100644 0001755 0000024 00000000000 10146625200 014172 0 ustar djh staff data-in/FreeBSD_r4p_200411170440 0100644 0001755 0000024 00000000611 10146625203 014232 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 77 10 8 1 6 0 285 1 173 22069248 158978048 233115648 1551437824 140197888 1960170454 1549403293
data-in/FreeBSD_psa4_200411170440 0100644 0001755 0000024 00000000535 10146625204 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137199616 104247296 45051904 32768 104079606 122707142
data-in/FreeBSD_psa3_200411170440 0100644 0001755 0000024 00000000617 10146625204 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.22 1.36 1.44 21 2 10 30 2 128 31 9 1 1302 3895 826 0 210 4091904 347840512 1085808640 592424960 68268032 1255300597 1511405811
data-in/FreeBSD_psa2_200411170440 0100644 0001755 0000024 00000000630 10146625204 014374 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.28 0.36 13 0 1 34 0 155 76 7 1 13359 18008 57233 500 6224 726290432 323751936 366555136 679526400 10326016 1862584180 3113712415
data-in/FreeBSD_pinky_200411170440 0100644 0001755 0000024 00000000566 10146625204 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.28 0.40 71 13 31 52 75 302 10 14 4 0 0 12042240 170545152 745377792 84656128 30781440 877595965 3684377083 11 0
data-in/Linux_mb_200411170445 0100644 0001755 0000024 00000000155 10146625661 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.02 0.00 13 16 82 15 1
data-in/Linux_psa1_200411170445 0100644 0001755 0000024 00000000113 10146625657 014275 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 235
data-in/Linux_r1z_200411170445 0100644 0001755 0000024 00000000307 10146625660 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.13 0.49 1.27 84 34 23 128 18 3 116 87 6 166
data-in/Linux_r1m2_200411170445 0100644 0001755 0000024 00000000314 10146625660 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.16 0.10 86 81 34 137 20 3 2168 1139 47 1325
data-in/Linux_r1m1_200411170445 0100644 0001755 0000024 00000000312 10146625661 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.16 0.15 69 73 29 154 32 3 768 400 18 2316
data-in/Linux_r1f_200411170445 0100644 0001755 0000024 00000000274 10146625665 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.20 1.23 1.21 87 85 46 206 20 8729 13219 15 8712
data-in/Linux_r1a1_200411170445 0100644 0001755 0000024 00000000267 10146625662 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.26 2.81 2.68 83 35 14 142 23 207 109 9 619
data-in/Linux_r1a_200411170445 0100644 0001755 0000024 00000000315 10146625662 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.25 1.22 91 32 27 187 20 21 5254 4227 88 7064
data-in/Linux_streamguys1_200411170445 0100644 0001755 0000024 00000000223 10146625662 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.59 0.88 0.79 49 60 627 48 8 3 0
data-in/Linux_steve_200411170445 0100644 0001755 0000024 00000000113 10146625662 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170445 0100644 0001755 0000024 00000000224 10146625661 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.37 0.39 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170445 0100644 0001755 0000024 00000000225 10146625660 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.16 0.36 19 52 491 136 15 3 0
data-in/Linux_hwnode3_200411170445 0100644 0001755 0000024 00000000224 10146625657 015003 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.03 1.07 1.19 73 17 775 96 27 3 0
data-in/Linux_hwnode2_200411170445 0100644 0001755 0000024 00000000225 10146625660 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170445 0100644 0001755 0000024 00000000000 10146625655 014215 0 ustar djh staff data-in/FreeBSD_r4p_200411170445 0100644 0001755 0000024 00000000611 10146625657 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 285 1 179 22773760 158924800 232546304 1551355904 140197888 1960490490 1551748021
data-in/FreeBSD_psa4_200411170445 0100644 0001755 0000024 00000000535 10146625660 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104084925 122714076
data-in/FreeBSD_psa3_200411170445 0100644 0001755 0000024 00000000617 10146625660 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.34 1.29 1.37 21 2 10 30 2 139 36 9 1 1342 4045 834 0 343 9777152 364081152 1105207296 546279424 73089024 1257994576 1525083863
data-in/FreeBSD_psa2_200411170445 0100644 0001755 0000024 00000000630 10146625662 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.06 0.19 0.30 13 0 1 34 0 154 69 7 1 13391 18039 57351 500 6233 668262400 281636864 383172608 762322944 11055104 1869924907 3187250890
data-in/FreeBSD_pinky_200411170445 0100644 0001755 0000024 00000000566 10146625660 014704 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.17 0.32 0.40 71 13 31 52 75 299 10 14 4 0 0 15458304 171089920 741531648 84611072 30711808 883392502 3689784965 11 0
data-in/Linux_staging_200411170445 0100644 0001755 0000024 00000000166 10146625660 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.07 0.25 8 100 113 26 0
data-in/Linux_r1q_200411170445 0100644 0001755 0000024 00000000265 10146625661 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.47 2.34 2.32 89 77 42 136 21 77 55 1 132
data-in/Linux_mb_200411170450 0100644 0001755 0000024 00000000155 10146626334 014022 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 76 15 1
data-in/Linux_staging_200411170450 0100644 0001755 0000024 00000000166 10146626334 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.17 8 100 113 26 0
data-in/Linux_psa1_200411170450 0100644 0001755 0000024 00000000113 10146626334 014262 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 235
data-in/Linux_r1z_200411170450 0100644 0001755 0000024 00000000310 10146626336 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.19 0.92 84 34 23 119 16 3 134 100 6 184
data-in/Linux_r1q_200411170450 0100644 0001755 0000024 00000000266 10146626335 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.88 2.93 2.58 89 77 42 130 21 114 78 1 184
data-in/Linux_r1m2_200411170450 0100644 0001755 0000024 00000000314 10146626334 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.16 0.11 86 81 34 137 20 3 2243 1194 50 1357
data-in/Linux_r1m1_200411170450 0100644 0001755 0000024 00000000312 10146626335 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.20 0.21 0.18 69 73 29 150 32 3 794 406 18 2388
data-in/Linux_r1f_200411170450 0100644 0001755 0000024 00000000274 10146626344 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.13 1.15 1.17 87 85 46 207 20 8751 13285 15 8715
data-in/Linux_r1a1_200411170450 0100644 0001755 0000024 00000000267 10146626335 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.11 2.33 2.55 83 34 14 142 25 226 135 9 697
data-in/Linux_r1a_200411170450 0100644 0001755 0000024 00000000315 10146626341 014103 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.90 1.48 1.31 91 32 27 192 20 21 5261 4259 88 7092
data-in/Linux_streamguys1_200411170450 0100644 0001755 0000024 00000000223 10146626335 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.47 0.76 0.77 49 60 627 48 8 3 0
data-in/Linux_steve_200411170450 0100644 0001755 0000024 00000000113 10146626336 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.09 0.04 0.01 73 63 2370
data-in/Linux_mnode_200411170450 0100644 0001755 0000024 00000000224 10146626334 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.35 0.36 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170450 0100644 0001755 0000024 00000000225 10146626335 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.05 0.25 19 52 493 136 15 3 0
data-in/Linux_hwnode3_200411170450 0100644 0001755 0000024 00000000224 10146626333 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.56 0.75 1.01 73 17 786 97 27 3 0
data-in/Linux_hwnode2_200411170450 0100644 0001755 0000024 00000000225 10146626336 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170450 0100644 0001755 0000024 00000000000 10146626331 014201 0 ustar djh staff data-in/Linux_mb_200411170455 0100644 0001755 0000024 00000000155 10146627007 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.06 0.02 0.00 13 16 78 15 1
data-in/FreeBSD_psa4_200411170450 0100644 0001755 0000024 00000000535 10146626334 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104090362 122721392
data-in/FreeBSD_psa3_200411170450 0100644 0001755 0000024 00000000620 10146626334 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.14 1.16 1.28 21 2 10 31 2 131 31 9 1 1376 4157 856 0 469 4087808 348332032 1087733760 551497728 106782720 1259826301 1535079460
data-in/FreeBSD_psa2_200411170450 0100644 0001755 0000024 00000000613 10146626333 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.02 0.77 0.50 13 0 1 33 0 130 68 7 1 15 23 32 0 3 1030270976 199135232 384217088 482516992 10309632 1878792614 3304715764
data-in/FreeBSD_pinky_200411170450 0100644 0001755 0000024 00000000566 10146626334 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.31 0.81 0.57 71 13 31 52 75 305 10 14 4 0 0 12791808 169684992 744161280 87379968 29384704 888664016 3695135439 11 0
data-in/FreeBSD_r4p_200411170450 0100644 0001755 0000024 00000000611 10146626334 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 285 1 181 21716992 159621120 232906752 1551355904 140197888 1961506536 1555488361
data-in/Linux_staging_200411170455 0100644 0001755 0000024 00000000166 10146627006 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.11 8 100 113 26 0
data-in/Linux_psa1_200411170455 0100644 0001755 0000024 00000000113 10146627010 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 234
data-in/Linux_r1z_200411170455 0100644 0001755 0000024 00000000310 10146627011 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.06 0.65 84 34 23 120 16 3 149 108 8 203
data-in/Linux_r1q_200411170455 0100644 0001755 0000024 00000000266 10146627011 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.54 2.65 2.54 89 77 42 128 20 132 91 2 237
data-in/Linux_r1m2_200411170455 0100644 0001755 0000024 00000000314 10146627011 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.05 0.07 86 81 34 129 20 3 2323 1243 50 1395
data-in/Linux_r1m1_200411170455 0100644 0001755 0000024 00000000312 10146627010 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.11 0.15 69 73 29 150 32 3 811 429 18 2469
data-in/Linux_r1f_200411170455 0100644 0001755 0000024 00000000274 10146627015 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.21 1.19 87 85 46 204 20 8808 13324 15 8722
data-in/Linux_r1a1_200411170455 0100644 0001755 0000024 00000000270 10146627010 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 1.03 1.92 83 34 14 136 25 251 144 11 778
data-in/Linux_r1a_200411170455 0100644 0001755 0000024 00000000315 10146627013 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.28 1.31 1.27 91 32 27 186 20 21 5276 4270 88 7117
data-in/Linux_streamguys1_200411170455 0100644 0001755 0000024 00000000223 10146627012 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.67 0.66 0.70 49 60 627 47 8 3 0
data-in/Linux_mnode_200411170455 0100644 0001755 0000024 00000000224 10146627011 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.25 0.35 0.35 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170455 0100644 0001755 0000024 00000000225 10146627010 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.05 0.18 19 52 496 136 15 3 0
data-in/Linux_hwnode3_200411170455 0100644 0001755 0000024 00000000224 10146627011 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.69 0.67 0.89 73 17 795 95 27 3 0
data-in/Linux_hwnode2_200411170455 0100644 0001755 0000024 00000000225 10146627010 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.04 0.02 0.00 81 15 768 229 23 4 0
data-in/FreeBSD_mb2_200411170455 0100644 0001755 0000024 00000000000 10146627004 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170455 0100644 0001755 0000024 00000000610 10146627007 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 1 2 0 74 9 8 1 6 0 285 1 183 23158784 160677888 230387712 1551376384 140197888 1962839343 1557865090
data-in/FreeBSD_psa4_200411170455 0100644 0001755 0000024 00000000535 10146627007 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104096591 122728582
data-in/FreeBSD_psa3_200411170455 0100644 0001755 0000024 00000000617 10146627007 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.38 1.24 1.27 21 2 10 31 2 139 31 9 1 1414 4255 876 0 605 9879552 336384000 1079119872 579391488 93659136 1261398607 1541983106
data-in/FreeBSD_psa2_200411170455 0100644 0001755 0000024 00000000615 10146627010 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.46 0.60 0.48 13 0 1 33 0 138 74 7 1 49 94 129 0 12 1020055552 252764160 388792320 432881664 11956224 1888632543 3437315698
data-in/FreeBSD_pinky_200411170455 0100644 0001755 0000024 00000000566 10146627010 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.24 0.48 0.49 71 13 31 52 75 299 10 14 4 0 0 12013568 171274240 744198144 86642688 29274112 894239764 3700569184 11 0
data-in/Linux_steve_200411170455 0100644 0001755 0000024 00000000113 10146627012 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2370
data-in/Linux_mb_200411170500 0100644 0001755 0000024 00000000155 10146627464 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170500 0100644 0001755 0000024 00000000166 10146627464 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.07 8 100 113 26 0
data-in/Linux_psa1_200411170500 0100644 0001755 0000024 00000000113 10146627463 014262 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.19 0.06 0.01 4 26 236
data-in/Linux_r1z_200411170500 0100644 0001755 0000024 00000000310 10146627466 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.05 0.47 84 34 23 123 16 3 165 120 8 222
data-in/Linux_r1q_200411170500 0100644 0001755 0000024 00000000267 10146627465 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.27 2.36 2.43 89 77 42 136 21 161 114 2 292
data-in/Linux_r1m2_200411170500 0100644 0001755 0000024 00000000314 10146627466 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.07 0.07 86 81 34 136 20 3 2383 1295 52 1432
data-in/Linux_r1m1_200411170500 0100644 0001755 0000024 00000000312 10146627463 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.18 0.16 69 73 29 153 32 3 832 442 18 2536
data-in/Linux_r1f_200411170500 0100644 0001755 0000024 00000000274 10146627471 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.20 1.18 1.17 87 85 46 206 20 8835 13394 15 8725
data-in/Linux_r1a1_200411170500 0100644 0001755 0000024 00000000270 10146627465 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.70 0.62 1.48 83 34 14 146 28 276 194 14 847
data-in/Linux_r1a_200411170500 0100644 0001755 0000024 00000000315 10146627467 014111 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.22 1.23 1.24 91 32 27 186 20 21 5288 4288 89 7143
data-in/Linux_streamguys1_200411170500 0100644 0001755 0000024 00000000223 10146627466 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.51 0.55 0.62 49 60 625 46 8 3 0
data-in/Linux_steve_200411170500 0100644 0001755 0000024 00000000113 10146627465 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170500 0100644 0001755 0000024 00000000224 10146627465 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.31 0.34 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170500 0100644 0001755 0000024 00000000225 10146627465 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.12 19 52 495 136 15 3 0
data-in/Linux_hwnode3_200411170500 0100644 0001755 0000024 00000000224 10146627466 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.05 0.64 0.79 73 17 787 95 27 3 0
data-in/Linux_hwnode2_200411170500 0100644 0001755 0000024 00000000225 10146627465 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 768 229 23 4 0
data-in/FreeBSD_mb2_200411170500 0100644 0001755 0000024 00000000000 10146627460 014201 0 ustar djh staff data-in/Linux_mb_200411170505 0100644 0001755 0000024 00000000156 10146630141 014013 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.01 0.00 13 16 103 15 1
data-in/FreeBSD_r4p_200411170500 0100644 0001755 0000024 00000000610 10146627463 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 1 2 0 74 9 8 1 6 0 285 1 186 18325504 160825344 234217472 1552232448 140197888 1964087557 1559807117
data-in/FreeBSD_psa4_200411170500 0100644 0001755 0000024 00000000535 10146627464 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104103168 122736370
data-in/FreeBSD_psa3_200411170500 0100644 0001755 0000024 00000000617 10146627463 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.27 1.25 1.25 21 2 10 32 2 126 31 9 1 1442 4405 892 0 731 4087808 352501760 1080295424 590848000 70701056 1262731785 1546711835
data-in/FreeBSD_psa2_200411170500 0100644 0001755 0000024 00000000616 10146627464 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.44 0.95 0.64 13 0 1 33 0 130 71 7 1 98 139 343 0 20 1022570496 258621440 382222336 430002176 13033472 1896713435 3502293628
data-in/FreeBSD_pinky_200411170500 0100644 0001755 0000024 00000000566 10146627464 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.68 1.03 0.72 71 13 31 52 75 288 11 14 4 0 0 10964992 169398272 746618880 66117632 50302976 899636466 3705690352 11 0
data-in/Linux_staging_200411170505 0100644 0001755 0000024 00000000166 10146630140 015051 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.04 8 100 113 26 0
data-in/Linux_psa1_200411170505 0100644 0001755 0000024 00000000113 10146630137 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 235
data-in/Linux_r1z_200411170505 0100644 0001755 0000024 00000000310 10146630140 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.33 84 34 23 126 16 3 180 130 8 239
data-in/Linux_r1q_200411170505 0100644 0001755 0000024 00000000267 10146630142 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.61 2.78 2.61 89 77 42 138 20 185 124 2 349
data-in/Linux_r1m2_200411170505 0100644 0001755 0000024 00000000314 10146630141 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.06 0.07 86 81 34 136 20 3 2449 1345 54 1464
data-in/Linux_r1m1_200411170505 0100644 0001755 0000024 00000000312 10146630141 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 0.17 0.16 69 73 29 147 32 3 880 448 18 2611
data-in/Linux_r1f_200411170505 0100644 0001755 0000024 00000000274 10146630146 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.30 1.30 1.23 87 85 46 205 20 8857 13445 15 8740
data-in/Linux_r1a1_200411170505 0100644 0001755 0000024 00000000270 10146630140 014155 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.35 1.12 83 34 14 132 26 318 211 14 930
data-in/Linux_r1a_200411170505 0100644 0001755 0000024 00000000315 10146630145 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.14 1.47 1.32 91 32 27 192 20 21 5305 4304 89 7171
data-in/Linux_streamguys1_200411170505 0100644 0001755 0000024 00000000223 10146630140 015673 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.21 0.42 0.55 49 60 625 46 8 3 0
data-in/Linux_steve_200411170505 0100644 0001755 0000024 00000000113 10146630142 014535 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170505 0100644 0001755 0000024 00000000224 10146630141 014513 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.35 78 47 138 38 1 12 0
data-in/Linux_hwnode3_200411170505 0100644 0001755 0000024 00000000224 10146630140 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.42 0.65 73 17 785 94 27 3 0
data-in/Linux_hwnode2_200411170505 0100644 0001755 0000024 00000000225 10146630140 014757 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.07 0.02 81 15 764 229 23 4 0
data-in/FreeBSD_mb2_200411170505 0100644 0001755 0000024 00000000000 10146630135 014177 0 ustar djh staff data-in/FreeBSD_r4p_200411170505 0100644 0001755 0000024 00000000610 10146630141 014230 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 291 1 188 18358272 160784384 234221568 1552236544 140197888 1964270761 1561435557
data-in/FreeBSD_psa4_200411170505 0100644 0001755 0000024 00000000535 10146630141 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811943424 137203712 104194048 45060096 32768 104109857 122743856
data-in/FreeBSD_psa3_200411170505 0100644 0001755 0000024 00000000617 10146630141 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.29 1.22 1.23 21 2 10 32 2 129 30 9 1 1486 4515 912 0 861 9285632 364556288 1065455616 578166784 80969728 1264478220 1551941140
data-in/FreeBSD_psa2_200411170505 0100644 0001755 0000024 00000000617 10146630140 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.10 0.36 0.44 13 0 1 34 0 131 70 7 1 120 181 375 0 30 1027252224 261169152 374874112 429510656 13643776 1901940795 3534713483
data-in/FreeBSD_pinky_200411170505 0100644 0001755 0000024 00000000566 10146630141 014667 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.13 0.56 0.60 71 13 31 52 75 305 10 14 4 0 0 13541376 170037248 743043072 70447104 46333952 905084070 3710923529 11 0
data-in/Linux_hwnode5_200411170505 0100644 0001755 0000024 00000000225 10146630141 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.03 0.09 19 52 496 136 15 3 0
data-in/Linux_mb_200411170510 0100644 0001755 0000024 00000000155 10146630614 014013 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 83 15 1
data-in/Linux_staging_200411170510 0100644 0001755 0000024 00000000166 10146630612 015051 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.01 8 100 113 26 0
data-in/Linux_psa1_200411170510 0100644 0001755 0000024 00000000113 10146630614 014253 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 232
data-in/Linux_r1z_200411170510 0100644 0001755 0000024 00000000310 10146630615 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.23 84 34 23 137 25 3 193 141 8 256
data-in/Linux_r1q_200411170510 0100644 0001755 0000024 00000000267 10146630615 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.43 2.56 2.55 89 77 42 137 21 207 156 3 409
data-in/Linux_r1m2_200411170510 0100644 0001755 0000024 00000000314 10146630614 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.06 0.07 86 81 34 136 20 3 2522 1412 55 1498
data-in/Linux_r1m1_200411170510 0100644 0001755 0000024 00000000312 10146630614 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.22 0.18 69 73 29 147 32 3 891 464 18 2685
data-in/Linux_r1f_200411170510 0100644 0001755 0000024 00000000274 10146630620 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.23 1.22 1.20 87 85 46 205 20 8883 13488 15 8748
data-in/Linux_r1a1_200411170510 0100644 0001755 0000024 00000000271 10146630614 014160 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.21 0.83 83 34 14 134 28 388 221 16 1001
data-in/Linux_r1a_200411170510 0100644 0001755 0000024 00000000315 10146630617 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.64 1.51 1.37 91 32 27 185 21 21 5325 4308 89 7195
data-in/Linux_streamguys1_200411170510 0100644 0001755 0000024 00000000223 10146630616 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
3.82 2.16 1.15 49 60 624 45 8 3 0
data-in/Linux_steve_200411170510 0100644 0001755 0000024 00000000113 10146630615 014536 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170510 0100644 0001755 0000024 00000000224 10146630615 014515 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.26 0.31 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170510 0100644 0001755 0000024 00000000225 10146630612 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.06 19 52 497 136 15 3 0
data-in/Linux_hwnode3_200411170510 0100644 0001755 0000024 00000000224 10146630614 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.75 0.50 0.61 73 17 794 95 27 3 0
data-in/Linux_hwnode2_200411170510 0100644 0001755 0000024 00000000225 10146630615 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.05 0.01 81 15 758 230 23 4 0
data-in/FreeBSD_mb2_200411170510 0100644 0001755 0000024 00000000000 10146630610 014171 0 ustar djh staff data-in/Linux_psa1_200411170515 0100644 0001755 0000024 00000000113 10146631270 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.08 0.02 0.01 4 26 232
data-in/FreeBSD_psa4_200411170510 0100644 0001755 0000024 00000000535 10146630614 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.08 0.02 0.01 14 0 0 2 0 75 7 7 1 0 0 0 1811939328 137207808 104194048 45060096 32768 104115976 122751236
data-in/FreeBSD_psa3_200411170510 0100644 0001755 0000024 00000000617 10146630614 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.34 1.25 1.24 21 2 10 32 2 138 35 9 1 1532 4663 918 0 985 9719808 364920832 1098817536 560644096 64331776 1266354835 1558174543
data-in/FreeBSD_psa2_200411170510 0100644 0001755 0000024 00000000617 10146630614 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.05 0.14 0.31 13 0 1 34 0 131 68 7 1 150 217 484 0 38 1024167936 263471104 374820864 430321664 13668352 1907409769 3570524355
data-in/FreeBSD_pinky_200411170510 0100644 0001755 0000024 00000000565 10146630615 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.16 0.42 0.54 71 13 31 52 75 299 10 14 4 0 0 8302592 168607744 749514752 73691136 43290624 910494966 3716326539 11 0
data-in/FreeBSD_r4p_200411170510 0100644 0001755 0000024 00000000610 10146630613 014230 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 73 8 8 1 6 0 297 1 190 20185088 160788480 232419328 1552207872 140197888 1964418883 1563147954
data-in/Linux_staging_200411170515 0100644 0001755 0000024 00000000166 10146631266 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_r1z_200411170515 0100644 0001755 0000024 00000000310 10146631271 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.02 0.17 84 34 23 127 16 3 211 165 8 273
data-in/Linux_r1q_200411170515 0100644 0001755 0000024 00000000267 10146631271 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.45 2.37 2.45 89 77 42 142 21 233 162 3 464
data-in/Linux_r1m2_200411170515 0100644 0001755 0000024 00000000314 10146631271 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.18 0.09 0.08 86 81 34 144 20 3 2579 1496 56 1533
data-in/Linux_r1m1_200411170515 0100644 0001755 0000024 00000000312 10146631272 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.15 0.16 69 73 29 177 51 3 914 480 18 2761
data-in/Linux_r1f_200411170515 0100644 0001755 0000024 00000000274 10146631276 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.07 1.49 1.28 87 85 46 201 20 8910 13565 15 8763
data-in/Linux_r1a1_200411170515 0100644 0001755 0000024 00000000271 10146631271 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.21 0.65 83 34 14 138 27 406 232 18 1086
data-in/Linux_r1a_200411170515 0100644 0001755 0000024 00000000315 10146631274 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.30 1.31 91 32 27 183 20 21 5337 4337 90 7221
data-in/Linux_steve_200411170515 0100644 0001755 0000024 00000000113 10146631271 014542 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170515 0100644 0001755 0000024 00000000224 10146631271 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.33 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170515 0100644 0001755 0000024 00000000225 10146631271 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.03 19 52 499 136 15 3 0
data-in/Linux_hwnode3_200411170515 0100644 0001755 0000024 00000000224 10146631270 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.42 0.54 73 17 798 95 27 3 0
data-in/Linux_hwnode2_200411170515 0100644 0001755 0000024 00000000225 10146631271 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.02 0.00 81 15 770 230 23 4 0
data-in/FreeBSD_mb2_200411170515 0100644 0001755 0000024 00000000000 10146631264 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170515 0100644 0001755 0000024 00000000610 10146631271 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.01 0.00 9 0 0 2 0 72 7 8 1 6 0 297 1 193 20701184 160747520 231956480 1552195584 140197888 1964648060 1565922387
data-in/FreeBSD_psa4_200411170515 0100644 0001755 0000024 00000000535 10146631267 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104121951 122758298
data-in/FreeBSD_psa3_200411170515 0100644 0001755 0000024 00000000620 10146631270 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.44 1.43 1.32 21 2 10 33 2 138 36 9 1 1632 4821 984 0 1108 4112384 312295424 1078599680 638693376 64733184 1268898018 1565742030
data-in/FreeBSD_psa2_200411170515 0100644 0001755 0000024 00000000617 10146631270 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.08 0.23 13 0 1 34 0 131 67 7 1 194 284 628 0 47 1025552384 267333632 370733056 428879872 13950976 1913733047 3605738517
data-in/FreeBSD_pinky_200411170515 0100644 0001755 0000024 00000000565 10146631271 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.05 0.33 0.48 71 13 31 52 75 309 10 14 4 0 0 4227072 171495424 748916736 80707584 38055936 925786333 3722064563 11 0
data-in/Linux_mb_200411170515 0100644 0001755 0000024 00000000155 10146631266 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 80 15 1
data-in/Linux_streamguys1_200411170515 0100644 0001755 0000024 00000000223 10146631272 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 1.20 1.02 49 60 624 45 8 3 0
data-in/Linux_mb_200411170520 0100644 0001755 0000024 00000000155 10146631744 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170520 0100644 0001755 0000024 00000000166 10146631744 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170520 0100644 0001755 0000024 00000000113 10146631744 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.03 0.01 4 26 233
data-in/Linux_r1z_200411170520 0100644 0001755 0000024 00000000310 10146631745 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.02 0.12 84 34 23 127 18 3 228 174 8 294
data-in/Linux_r1q_200411170520 0100644 0001755 0000024 00000000267 10146631746 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.73 2.85 2.64 89 77 42 135 21 263 183 3 520
data-in/Linux_r1m2_200411170520 0100644 0001755 0000024 00000000314 10146631742 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.10 0.09 86 81 34 146 20 3 2634 1544 59 1567
data-in/Linux_r1m1_200411170520 0100644 0001755 0000024 00000000312 10146631744 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.16 69 73 29 171 50 3 939 488 18 2849
data-in/Linux_r1f_200411170520 0100644 0001755 0000024 00000000274 10146631751 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.68 1.48 1.32 87 85 46 209 20 8938 13619 15 8771
data-in/Linux_r1a_200411170520 0100644 0001755 0000024 00000000315 10146631750 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.80 1.41 1.33 91 32 27 187 20 21 5349 4346 90 7247
data-in/Linux_streamguys1_200411170520 0100644 0001755 0000024 00000000223 10146631746 015705 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.59 0.79 49 60 624 45 8 3 0
data-in/Linux_steve_200411170520 0100644 0001755 0000024 00000000113 10146631745 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170520 0100644 0001755 0000024 00000000224 10146631745 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.20 0.30 0.33 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170520 0100644 0001755 0000024 00000000225 10146631745 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 500 136 15 3 0
data-in/Linux_hwnode3_200411170520 0100644 0001755 0000024 00000000224 10146631743 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.36 0.48 73 17 804 96 27 3 0
data-in/Linux_hwnode2_200411170520 0100644 0001755 0000024 00000000225 10146631746 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.03 0.00 81 15 777 230 23 4 0
data-in/FreeBSD_mb2_200411170520 0100644 0001755 0000024 00000000000 10146631741 014200 0 ustar djh staff data-in/FreeBSD_r4p_200411170520 0100644 0001755 0000024 00000000610 10146631743 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 297 1 195 19382272 161828864 232185856 1552203776 140197888 1965848794 1567879643
data-in/FreeBSD_psa4_200411170520 0100644 0001755 0000024 00000000535 10146631745 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104127872 122765806
data-in/FreeBSD_psa3_200411170520 0100644 0001755 0000024 00000000620 10146631744 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.58 1.38 1.32 21 2 10 33 2 151 38 9 1 1670 4951 994 2 1239 8065024 359739392 1078366208 578195456 74067968 1276660702 1573859933
data-in/FreeBSD_psa2_200411170520 0100644 0001755 0000024 00000000617 10146631744 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.13 0.19 13 0 1 34 0 130 66 7 1 235 332 719 0 55 1030660096 269836288 363626496 428376064 13950976 1920661265 3643169662
data-in/FreeBSD_pinky_200411170520 0100644 0001755 0000024 00000000566 10146631745 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.32 0.46 71 13 31 52 75 296 10 14 4 0 0 16429056 170364928 741871616 77004800 37732352 932481647 3727549127 11 0
data-in/Linux_r1a1_200411170520 0100644 0001755 0000024 00000000271 10146631745 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.13 0.48 83 34 14 125 24 412 239 18 1161
data-in/Linux_staging_200411170525 0100644 0001755 0000024 00000000166 10146632417 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170525 0100644 0001755 0000024 00000000113 10146632421 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.02 0.04 0.00 4 26 232
data-in/Linux_r1z_200411170525 0100644 0001755 0000024 00000000311 10146632421 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.08 84 34 23 127 17 3 245 194 10 311
data-in/Linux_r1q_200411170525 0100644 0001755 0000024 00000000267 10146632421 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.24 2.43 2.51 89 77 42 135 20 293 206 4 577
data-in/Linux_r1m2_200411170525 0100644 0001755 0000024 00000000314 10146632421 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.08 0.08 86 81 34 139 20 3 2710 1611 59 1602
data-in/Linux_r1m1_200411170525 0100644 0001755 0000024 00000000312 10146632420 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.08 0.12 69 73 29 166 50 3 976 520 18 2920
data-in/Linux_r1f_200411170525 0100644 0001755 0000024 00000000274 10146632426 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.59 1.45 1.33 87 85 46 199 20 8961 13685 15 8784
data-in/Linux_r1a1_200411170525 0100644 0001755 0000024 00000000271 10146632421 014164 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.14 0.38 83 34 14 124 23 424 262 20 1237
data-in/Linux_r1a_200411170525 0100644 0001755 0000024 00000000315 10146632424 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.25 1.29 1.28 91 32 27 187 20 21 5363 4352 90 7275
data-in/Linux_streamguys1_200411170525 0100644 0001755 0000024 00000000223 10146632422 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.61 0.69 0.78 49 60 624 45 8 3 0
data-in/Linux_steve_200411170525 0100644 0001755 0000024 00000000113 10146632421 014541 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2371
data-in/Linux_mnode_200411170525 0100644 0001755 0000024 00000000224 10146632421 014520 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.32 0.35 0.34 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170525 0100644 0001755 0000024 00000000225 10146632416 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.02 0.00 19 52 500 136 15 3 0
data-in/Linux_hwnode3_200411170525 0100644 0001755 0000024 00000000224 10146632420 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.35 0.34 0.43 73 17 806 96 27 3 0
data-in/Linux_hwnode2_200411170525 0100644 0001755 0000024 00000000225 10146632420 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 230 23 4 0
data-in/FreeBSD_mb2_200411170525 0100644 0001755 0000024 00000000000 10146632415 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170525 0100644 0001755 0000024 00000000610 10146632421 014235 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.01 0.00 9 0 1 2 0 74 9 8 1 6 0 297 1 197 18903040 162840576 231653376 1552203776 140197888 1967155117 1571010379
data-in/FreeBSD_psa4_200411170525 0100644 0001755 0000024 00000000535 10146632421 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811935232 137207808 104198144 45060096 32768 104133781 122772868
data-in/FreeBSD_psa3_200411170525 0100644 0001755 0000024 00000000621 10146632421 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.18 1.27 1.28 21 2 10 34 2 139 32 9 1 1718 5085 1030 2 1373 9572352 364306432 1078116352 553304064 93134848 1278577589 1584419060
data-in/FreeBSD_psa2_200411170525 0100644 0001755 0000024 00000000617 10146632417 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.07 0.14 13 0 1 34 0 132 69 7 1 287 388 842 0 64 1026019328 288907264 364359680 413425664 13737984 1926715514 3715642976
data-in/FreeBSD_pinky_200411170525 0100644 0001755 0000024 00000000566 10146632421 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.27 0.40 0.48 71 13 31 52 75 299 10 14 4 0 0 15073280 171118592 741773312 78524416 36913152 937789831 3732877870 11 0
data-in/Linux_mb_200411170525 0100644 0001755 0000024 00000000155 10146632420 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.02 0.00 13 16 81 15 1
data-in/Linux_mb_200411170530 0100644 0001755 0000024 00000000155 10146633075 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 77 15 1
data-in/Linux_psa1_200411170530 0100644 0001755 0000024 00000000113 10146633074 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 233
data-in/Linux_r1z_200411170530 0100644 0001755 0000024 00000000311 10146633076 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.05 84 34 23 130 16 3 259 204 10 330
data-in/Linux_r1m2_200411170530 0100644 0001755 0000024 00000000314 10146633075 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.06 0.07 86 81 34 146 20 3 2771 1667 61 1642
data-in/Linux_r1m1_200411170530 0100644 0001755 0000024 00000000313 10146633075 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.09 0.10 69 73 29 168 50 3 1004 528 18 2998
data-in/Linux_r1f_200411170530 0100644 0001755 0000024 00000000274 10146633102 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.39 1.34 87 85 46 200 20 8992 13729 15 8792
data-in/Linux_r1a1_200411170530 0100644 0001755 0000024 00000000271 10146633074 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 0.13 0.31 83 34 14 133 28 439 267 22 1312
data-in/Linux_r1a_200411170530 0100644 0001755 0000024 00000000315 10146633100 014071 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.25 1.26 91 32 27 182 20 21 5380 4376 91 7300
data-in/Linux_streamguys1_200411170530 0100644 0001755 0000024 00000000223 10146633076 015704 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.85 0.70 0.72 49 60 628 45 8 3 0
data-in/Linux_steve_200411170530 0100644 0001755 0000024 00000000113 10146633076 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2373
data-in/Linux_mnode_200411170530 0100644 0001755 0000024 00000000224 10146633074 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.22 0.37 0.35 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170530 0100644 0001755 0000024 00000000225 10146633075 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.02 0.00 19 52 508 140 15 3 0
data-in/Linux_hwnode3_200411170530 0100644 0001755 0000024 00000000224 10146633075 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.82 0.40 0.40 73 17 808 95 27 3 0
data-in/Linux_hwnode2_200411170530 0100644 0001755 0000024 00000000225 10146633076 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 774 230 23 4 0
data-in/FreeBSD_mb2_200411170530 0100644 0001755 0000024 00000000000 10146633070 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170530 0100644 0001755 0000024 00000000610 10146633074 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 297 1 199 19783680 160944128 232669184 1552203776 140197888 1967597168 1573590192
data-in/FreeBSD_psa4_200411170530 0100644 0001755 0000024 00000000535 10146633074 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104141246 122780308
data-in/FreeBSD_psa3_200411170530 0100644 0001755 0000024 00000000622 10146633075 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.25 1.29 1.28 21 2 10 34 2 147 37 9 1 1778 5241 1094 6 1500 10731520 356274176 1084170240 570253312 77004800 1280907061 1594467610
data-in/FreeBSD_psa2_200411170530 0100644 0001755 0000024 00000000620 10146633074 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.03 0.09 13 0 1 34 0 134 69 7 1 334 422 1032 0 72 1022730240 296321024 365301760 408645632 13451264 1933755854 3764801782
data-in/FreeBSD_pinky_200411170530 0100644 0001755 0000024 00000000565 10146633075 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.35 0.46 71 13 31 52 75 310 10 14 5 0 0 8138752 170467328 751579136 81002496 32215040 943232628 3738281772 11 0
data-in/Linux_staging_200411170530 0100644 0001755 0000024 00000000166 10146633074 015060 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 114 26 0
data-in/Linux_r1q_200411170530 0100644 0001755 0000024 00000000267 10146633077 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.40 2.38 2.45 89 77 42 139 24 323 226 4 636
data-in/Linux_mb_200411170535 0100644 0001755 0000024 00000000155 10146633550 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.01 0.00 13 16 77 15 1
data-in/Linux_staging_200411170535 0100644 0001755 0000024 00000000166 10146633550 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170535 0100644 0001755 0000024 00000000113 10146633550 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.65 0.15 0.05 4 26 233
data-in/Linux_r1z_200411170535 0100644 0001755 0000024 00000000311 10146633551 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.03 0.05 84 34 23 129 24 3 277 207 10 349
data-in/Linux_r1q_200411170535 0100644 0001755 0000024 00000000267 10146633551 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.82 2.80 2.62 89 77 42 136 23 344 248 4 688
data-in/Linux_r1m2_200411170535 0100644 0001755 0000024 00000000314 10146633551 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.07 0.08 86 81 34 134 20 3 2840 1710 63 1678
data-in/Linux_r1m1_200411170535 0100644 0001755 0000024 00000000313 10146633550 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.05 0.08 0.09 69 73 29 167 50 3 1022 539 18 3077
data-in/Linux_r1f_200411170535 0100644 0001755 0000024 00000000274 10146633557 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.64 1.35 1.32 87 85 46 219 20 9029 13764 15 8806
data-in/Linux_r1a1_200411170535 0100644 0001755 0000024 00000000271 10146633550 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.14 0.26 83 34 14 130 26 459 272 22 1389
data-in/Linux_r1a_200411170535 0100644 0001755 0000024 00000000315 10146633554 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.75 1.42 1.31 91 32 27 192 20 21 5401 4393 91 7328
data-in/Linux_streamguys1_200411170535 0100644 0001755 0000024 00000000223 10146633551 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.39 1.54 1.06 49 60 613 46 8 3 0
data-in/Linux_steve_200411170535 0100644 0001755 0000024 00000000113 10146633552 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2363
data-in/Linux_mnode_200411170535 0100644 0001755 0000024 00000000224 10146633551 014526 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.29 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170535 0100644 0001755 0000024 00000000225 10146633550 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.04 0.01 19 52 525 146 15 3 0
data-in/Linux_hwnode3_200411170535 0100644 0001755 0000024 00000000224 10146633550 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.37 73 17 801 95 27 3 0
data-in/Linux_hwnode2_200411170535 0100644 0001755 0000024 00000000225 10146633550 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.03 0.00 81 15 774 230 23 4 0
data-in/FreeBSD_mb2_200411170535 0100644 0001755 0000024 00000000000 10146633544 014211 0 ustar djh staff data-in/FreeBSD_r4p_200411170535 0100644 0001755 0000024 00000000610 10146633550 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 201 18661376 160964608 233771008 1552203776 140197888 1967854445 1576781442
data-in/FreeBSD_psa4_200411170535 0100644 0001755 0000024 00000000535 10146633546 014417 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104146813 122787346
data-in/FreeBSD_psa2_200411170535 0100644 0001755 0000024 00000000620 10146633547 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.07 0.08 13 0 1 34 0 131 70 7 1 425 475 1492 0 81 1016975360 295006208 366239744 411910144 16318464 1941072297 3833192111
data-in/FreeBSD_pinky_200411170535 0100644 0001755 0000024 00000000566 10146633550 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.27 0.84 0.64 71 13 31 52 75 302 10 14 5 0 0 16109568 170262528 742993920 81850368 32186368 948391534 3743597941 11 0
data-in/FreeBSD_psa3_200411170535 0100644 0001755 0000024 00000000622 10146633547 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.33 1.17 1.20 21 2 10 34 2 147 32 9 1 1818 5375 1110 6 1633 11939840 343498752 1083555840 581611520 77828096 1282913228 1602551634
data-in/Linux_mb_200411170540 0100644 0001755 0000024 00000000155 10146634224 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170540 0100644 0001755 0000024 00000000166 10146634224 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170540 0100644 0001755 0000024 00000000113 10146634224 014257 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.04 0.02 4 26 234
data-in/Linux_r1z_200411170540 0100644 0001755 0000024 00000000311 10146634225 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.02 84 34 23 121 16 3 295 224 12 372
data-in/Linux_r1q_200411170540 0100644 0001755 0000024 00000000267 10146634226 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.33 2.53 2.54 89 77 42 137 21 375 260 5 752
data-in/Linux_r1m2_200411170540 0100644 0001755 0000024 00000000314 10146634225 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.04 0.06 86 81 34 141 20 3 2906 1763 64 1717
data-in/Linux_r1m1_200411170540 0100644 0001755 0000024 00000000313 10146634225 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.05 0.08 69 73 29 169 50 3 1038 563 18 3156
data-in/Linux_r1f_200411170540 0100644 0001755 0000024 00000000274 10146634232 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.54 1.50 1.38 87 86 46 210 20 9100 13815 15 8816
data-in/Linux_r1a1_200411170540 0100644 0001755 0000024 00000000271 10146634223 014163 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.19 0.25 83 34 14 127 24 476 292 24 1463
data-in/Linux_r1a_200411170540 0100644 0001755 0000024 00000000315 10146634227 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.88 1.58 1.38 91 32 27 189 20 22 5414 4404 91 7353
data-in/Linux_streamguys1_200411170540 0100644 0001755 0000024 00000000223 10146634226 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.53 0.82 0.86 49 60 612 45 8 3 0
data-in/Linux_steve_200411170540 0100644 0001755 0000024 00000000113 10146634226 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2366
data-in/Linux_mnode_200411170540 0100644 0001755 0000024 00000000224 10146634225 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.31 0.33 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170540 0100644 0001755 0000024 00000000225 10146634225 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.06 0.01 19 52 503 135 15 3 0
data-in/Linux_hwnode3_200411170540 0100644 0001755 0000024 00000000224 10146634224 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.15 0.29 0.34 73 17 805 95 27 3 0
data-in/Linux_hwnode2_200411170540 0100644 0001755 0000024 00000000225 10146634225 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.02 0.02 0.00 81 15 774 229 23 4 0
data-in/FreeBSD_mb2_200411170540 0100644 0001755 0000024 00000000000 10146634221 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170540 0100644 0001755 0000024 00000000610 10146634225 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 203 19410944 160968704 233017344 1552203776 140197888 1968048088 1579028311
data-in/FreeBSD_psa4_200411170540 0100644 0001755 0000024 00000000535 10146634223 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.03 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811931136 137211904 104198144 45060096 32768 104152632 122794372
data-in/FreeBSD_psa3_200411170540 0100644 0001755 0000024 00000000621 10146634223 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.94 1.06 1.14 21 2 10 35 2 140 32 9 1 1860 5517 1224 6 1757 5070848 292155392 1088442368 649424896 63340544 1285727515 1613747310
data-in/FreeBSD_psa2_200411170540 0100644 0001755 0000024 00000000620 10146634224 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.05 0.07 13 0 1 34 0 136 73 7 1 517 512 1806 0 92 1014689792 293236736 364036096 418033664 16453632 1951295050 3972874521
data-in/FreeBSD_pinky_200411170540 0100644 0001755 0000024 00000000566 10146634224 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.18 0.43 0.50 71 13 31 52 75 296 10 14 5 0 0 14815232 168869888 743116800 84471808 32129024 953751616 3748991634 11 0
data-in/Linux_staging_200411170545 0100644 0001755 0000024 00000000166 10146634676 015077 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170545 0100644 0001755 0000024 00000000113 10146634700 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 234
data-in/Linux_r1q_200411170545 0100644 0001755 0000024 00000000267 10146634702 014136 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.31 2.43 89 77 42 144 24 393 284 5 806
data-in/Linux_r1m2_200411170545 0100644 0001755 0000024 00000000314 10146634701 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.10 0.06 86 81 34 142 20 3 2975 1797 65 1751
data-in/Linux_r1m1_200411170545 0100644 0001755 0000024 00000000313 10146634701 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.05 0.07 69 73 29 172 50 3 1067 578 18 3226
data-in/Linux_r1f_200411170545 0100644 0001755 0000024 00000000274 10146634706 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.64 1.45 87 86 46 208 20 9173 13873 15 8830
data-in/Linux_r1a1_200411170545 0100644 0001755 0000024 00000000271 10146634700 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.32 0.25 0.26 83 35 14 131 24 493 315 28 1542
data-in/Linux_r1a_200411170545 0100644 0001755 0000024 00000000315 10146634702 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.26 1.33 1.31 91 32 27 188 20 22 5427 4428 92 7379
data-in/Linux_steve_200411170545 0100644 0001755 0000024 00000000113 10146634700 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.01 0.00 73 63 2373
data-in/Linux_streamguys1_200411170545 0100644 0001755 0000024 00000000223 10146634701 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.63 1.75 1.17 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170545 0100644 0001755 0000024 00000000224 10146634701 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.33 0.33 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170545 0100644 0001755 0000024 00000000225 10146634701 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.12 0.05 0.01 19 52 500 143 15 3 0
data-in/Linux_hwnode3_200411170545 0100644 0001755 0000024 00000000224 10146634700 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.28 0.33 0.35 73 17 805 97 27 3 0
data-in/Linux_hwnode2_200411170545 0100644 0001755 0000024 00000000225 10146634701 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170545 0100644 0001755 0000024 00000000000 10146634674 014217 0 ustar djh staff data-in/FreeBSD_r4p_200411170545 0100644 0001755 0000024 00000000610 10146634700 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 205 19431424 160968704 232996864 1552203776 140197888 1968491257 1592258482
data-in/FreeBSD_psa4_200411170545 0100644 0001755 0000024 00000000535 10146634700 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811886080 137211904 104251392 45051904 32768 104160307 122802392
data-in/FreeBSD_psa3_200411170545 0100644 0001755 0000024 00000000621 10146634700 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.94 1.10 1.13 21 2 10 35 2 151 36 9 1 1906 5625 1278 6 1901 4120576 336502784 1098248192 582737920 76824576 1288997788 1622979303
data-in/FreeBSD_psa2_200411170545 0100644 0001755 0000024 00000000621 10146634700 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.04 0.06 13 0 1 34 0 141 74 7 1 567 539 2060 0 101 1005735936 292450304 368660480 422572032 17031168 1959534076 4049708818
data-in/FreeBSD_pinky_200411170545 0100644 0001755 0000024 00000000565 10146634700 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.32 0.48 0.53 71 13 31 52 75 294 10 14 5 0 0 7364608 172392448 744824832 62521344 56299520 959014493 3754327950 11 0
data-in/Linux_mb_200411170545 0100644 0001755 0000024 00000000155 10146634676 014037 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 75 15 1
data-in/Linux_r1z_200411170545 0100644 0001755 0000024 00000000311 10146634701 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.01 84 34 23 123 16 3 311 232 12 391
data-in/Linux_mb_200411170550 0100644 0001755 0000024 00000000155 10146635354 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 81 15 1
data-in/Linux_staging_200411170550 0100644 0001755 0000024 00000000166 10146635354 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170550 0100644 0001755 0000024 00000000113 10146635354 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.01 0.02 0.00 4 26 234
data-in/Linux_r1z_200411170550 0100644 0001755 0000024 00000000311 10146635354 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 117 16 3 323 236 12 411
data-in/Linux_r1q_200411170550 0100644 0001755 0000024 00000000267 10146635355 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.82 2.83 2.62 89 77 42 139 21 414 323 5 866
data-in/Linux_r1m2_200411170550 0100644 0001755 0000024 00000000314 10146635355 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.16 0.10 86 81 34 133 20 3 3043 1845 68 1785
data-in/Linux_r1m1_200411170550 0100644 0001755 0000024 00000000313 10146635355 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.06 0.07 69 73 29 169 50 3 1093 590 18 3301
data-in/Linux_r1f_200411170550 0100644 0001755 0000024 00000000274 10146635365 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.54 1.51 1.44 87 86 46 207 20 9206 13911 15 8838
data-in/Linux_r1a1_200411170550 0100644 0001755 0000024 00000000271 10146635355 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.34 0.25 0.25 83 35 14 139 39 502 334 28 1615
data-in/Linux_r1a_200411170550 0100644 0001755 0000024 00000000315 10146635361 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.79 1.50 1.37 91 32 27 190 20 22 5440 4442 92 7406
data-in/Linux_streamguys1_200411170550 0100644 0001755 0000024 00000000223 10146635356 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.26 0.80 0.90 49 60 612 45 8 3 0
data-in/Linux_steve_200411170550 0100644 0001755 0000024 00000000113 10146635356 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.02 0.00 73 63 2374
data-in/Linux_mnode_200411170550 0100644 0001755 0000024 00000000224 10146635356 014530 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.28 0.31 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170550 0100644 0001755 0000024 00000000225 10146635355 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170550 0100644 0001755 0000024 00000000224 10146635354 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.38 0.43 0.38 73 17 812 93 29 3 0
data-in/Linux_hwnode2_200411170550 0100644 0001755 0000024 00000000225 10146635356 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 773 229 23 4 0
data-in/FreeBSD_mb2_200411170550 0100644 0001755 0000024 00000000000 10146635351 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170550 0100644 0001755 0000024 00000000610 10146635355 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 207 19427328 160972800 232996864 1552203776 140197888 1968697190 1594272443
data-in/FreeBSD_psa3_200411170550 0100644 0001755 0000024 00000000621 10146635354 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.80 0.94 1.05 21 2 10 35 2 134 34 8 1 1972 5747 1304 6 2030 3928064 290500608 1092878336 622866432 88260608 1290985823 1633269993
data-in/FreeBSD_psa2_200411170550 0100644 0001755 0000024 00000000620 10146635353 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.04 0.05 13 0 1 34 0 133 72 7 1 603 584 2221 0 109 999292928 291229696 368766976 429551616 17608704 1966298301 4112715141
data-in/FreeBSD_pinky_200411170550 0100644 0001755 0000024 00000000566 10146635355 014703 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.30 0.92 0.70 71 13 31 52 75 293 10 14 5 0 0 12091392 170827776 745062400 70373376 45047808 964572811 3759759418 11 0
data-in/FreeBSD_psa4_200411170550 0100644 0001755 0000024 00000000535 10146635353 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104166030 122809386
data-in/Linux_staging_200411170555 0100644 0001755 0000024 00000000166 10146636030 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 113 26 0
data-in/Linux_r1z_200411170555 0100644 0001755 0000024 00000000311 10146636031 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.00 84 34 23 117 16 3 336 244 12 430
data-in/Linux_r1q_200411170555 0100644 0001755 0000024 00000000267 10146636031 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.46 2.51 89 77 42 140 24 446 341 6 926
data-in/Linux_r1m2_200411170555 0100644 0001755 0000024 00000000314 10146636031 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.07 0.07 86 81 34 132 20 3 3104 1877 68 1820
data-in/Linux_r1m1_200411170555 0100644 0001755 0000024 00000000313 10146636031 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.04 0.06 69 73 29 166 50 3 1119 601 18 3380
data-in/Linux_r1f_200411170555 0100644 0001755 0000024 00000000274 10146636036 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.39 1.51 1.46 87 86 46 209 20 9242 13970 15 8850
data-in/Linux_r1a1_200411170555 0100644 0001755 0000024 00000000271 10146636031 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.27 0.26 83 35 14 128 29 515 337 28 1695
data-in/Linux_r1a_200411170555 0100644 0001755 0000024 00000000315 10146636032 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.34 1.34 91 32 27 189 20 23 5458 4473 92 7432
data-in/Linux_steve_200411170555 0100644 0001755 0000024 00000000113 10146636032 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2374
data-in/Linux_streamguys1_200411170555 0100644 0001755 0000024 00000000223 10146636032 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.47 0.71 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170555 0100644 0001755 0000024 00000000224 10146636030 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.30 0.30 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170555 0100644 0001755 0000024 00000000225 10146636027 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.01 0.00 19 52 489 132 15 3 0
data-in/Linux_hwnode3_200411170555 0100644 0001755 0000024 00000000224 10146636030 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.04 0.48 0.39 73 17 820 89 27 3 0
data-in/Linux_hwnode2_200411170555 0100644 0001755 0000024 00000000225 10146636030 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.14 0.06 0.01 81 15 762 223 23 4 0
data-in/FreeBSD_mb2_200411170555 0100644 0001755 0000024 00000000000 10146636025 014210 0 ustar djh staff data-in/FreeBSD_r4p_200411170555 0100644 0001755 0000024 00000000610 10146636030 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 303 1 209 19333120 160997376 233082880 1552187392 140197888 1968867380 1596317386
data-in/FreeBSD_psa4_200411170555 0100644 0001755 0000024 00000000535 10146636030 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104172843 122817022
data-in/FreeBSD_psa3_200411170555 0100644 0001755 0000024 00000000621 10146636027 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.02 1.13 1.11 21 2 10 35 2 136 30 8 1 2016 5867 1324 6 2160 4096000 347136000 1067515904 609853440 69832704 1292762410 1641915799
data-in/FreeBSD_psa2_200411170555 0100644 0001755 0000024 00000000621 10146636027 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.02 13 0 1 34 0 132 70 7 1 635 645 2369 0 118 1008054272 289689600 353054720 434057216 21594112 1974501414 4254865406
data-in/FreeBSD_pinky_200411170555 0100644 0001755 0000024 00000000566 10146636031 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.28 0.52 0.57 71 13 31 52 75 302 11 14 5 0 0 13443072 170807296 742313984 74530816 41734144 969948930 3764877295 11 0
data-in/Linux_mb_200411170555 0100644 0001755 0000024 00000000155 10146636030 014022 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.02 0.02 0.00 13 16 86 15 1
data-in/Linux_psa1_200411170555 0100644 0001755 0000024 00000000113 10146636031 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 232
data-in/Linux_mb_200411170600 0100644 0001755 0000024 00000000155 10146636503 014016 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170600 0100644 0001755 0000024 00000000166 10146636504 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.22 0.05 0.02 8 100 113 26 0
data-in/Linux_psa1_200411170600 0100644 0001755 0000024 00000000113 10146636505 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.32 0.08 0.02 4 26 227
data-in/Linux_r1z_200411170600 0100644 0001755 0000024 00000000311 10146636506 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.02 0.01 84 34 23 121 16 3 350 252 12 449
data-in/Linux_r1q_200411170600 0100644 0001755 0000024 00000000267 10146636507 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.45 2.38 2.44 89 77 42 141 20 474 365 6 986
data-in/Linux_r1m2_200411170600 0100644 0001755 0000024 00000000314 10146636505 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.13 0.12 0.09 86 81 34 136 20 3 3175 1929 70 1856
data-in/Linux_r1m1_200411170600 0100644 0001755 0000024 00000000313 10146636505 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.08 0.07 69 73 29 169 50 3 1144 615 18 3457
data-in/Linux_r1a1_200411170600 0100644 0001755 0000024 00000000271 10146636505 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.19 0.22 83 35 14 134 28 527 357 32 1764
data-in/Linux_r1a_200411170600 0100644 0001755 0000024 00000000315 10146636506 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.39 1.39 1.36 91 32 27 186 20 23 5476 4508 93 7456
data-in/Linux_streamguys1_200411170600 0100644 0001755 0000024 00000000223 10146636505 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.94 0.76 0.75 49 60 614 45 8 3 0
data-in/Linux_mnode_200411170600 0100644 0001755 0000024 00000000224 10146636506 014522 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.33 0.32 0.30 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170600 0100644 0001755 0000024 00000000225 10146636504 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170600 0100644 0001755 0000024 00000000224 10146636504 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.80 0.62 0.47 73 17 801 90 27 3 0
data-in/Linux_hwnode2_200411170600 0100644 0001755 0000024 00000000225 10146636506 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 81 15 762 223 23 4 0
data-in/FreeBSD_mb2_200411170600 0100644 0001755 0000024 00000000000 10146636501 014176 0 ustar djh staff data-in/Linux_r1f_200411170600 0100644 0001755 0000024 00000000274 10146636513 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.67 1.50 1.46 87 86 46 213 20 9329 14024 15 8858
data-in/FreeBSD_r4p_200411170600 0100644 0001755 0000024 00000000610 10146636504 014235 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.02 0.01 9 0 0 2 0 74 9 8 1 6 0 303 1 211 18522112 161013760 233877504 1552187392 140197888 1969177482 1598825471
data-in/FreeBSD_psa4_200411170600 0100644 0001755 0000024 00000000535 10146636504 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104179231 122824048
data-in/FreeBSD_psa3_200411170600 0100644 0001755 0000024 00000000621 10146636505 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.10 1.12 1.10 21 2 10 36 2 137 34 8 1 2050 6031 1360 6 2290 4091904 355762176 1089957888 558858240 89763840 1294730976 1650340317
data-in/FreeBSD_psa2_200411170600 0100644 0001755 0000024 00000000616 10146636504 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.42 0.44 0.20 13 0 1 34 0 133 69 7 1 674 698 2533 0 127 1011560448 288870400 346677248 437485568 21856256 1981077920 8806741
data-in/FreeBSD_pinky_200411170600 0100644 0001755 0000024 00000000566 10146636505 014675 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.11 0.42 0.53 71 13 31 52 75 280 10 14 5 0 0 10366976 169119744 746065920 78045184 39804928 975490614 3770005483 11 0
data-in/Linux_steve_200411170600 0100644 0001755 0000024 00000000113 10146636506 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2374
data-in/Linux_mb_200411170605 0100644 0001755 0000024 00000000155 10146637161 014024 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 82 15 1
data-in/Linux_staging_200411170605 0100644 0001755 0000024 00000000166 10146637161 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.01 0.00 8 100 113 26 0
data-in/Linux_psa1_200411170605 0100644 0001755 0000024 00000000113 10146637160 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 226
data-in/Linux_r1z_200411170605 0100644 0001755 0000024 00000000311 10146637162 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.03 0.00 84 34 23 125 20 3 366 267 14 474
data-in/Linux_r1q_200411170605 0100644 0001755 0000024 00000000270 10146637162 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 2.85 2.64 89 77 42 136 20 503 400 6 1043
data-in/Linux_r1m1_200411170605 0100644 0001755 0000024 00000000313 10146637161 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.11 0.09 69 73 29 165 50 3 1170 629 18 3533
data-in/Linux_r1f_200411170605 0100644 0001755 0000024 00000000274 10146637166 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.42 1.54 1.50 87 86 46 209 20 9360 14075 15 8871
data-in/Linux_r1a1_200411170605 0100644 0001755 0000024 00000000271 10146637161 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.14 0.18 83 35 14 132 29 553 361 32 1849
data-in/Linux_r1a_200411170605 0100644 0001755 0000024 00000000315 10146637166 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.23 1.75 1.50 91 33 27 193 20 23 5486 4526 93 7484
data-in/Linux_streamguys1_200411170605 0100644 0001755 0000024 00000000223 10146637162 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.54 0.64 49 60 612 45 8 3 0
data-in/Linux_steve_200411170605 0100644 0001755 0000024 00000000113 10146637161 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2375
data-in/Linux_mnode_200411170605 0100644 0001755 0000024 00000000224 10146637161 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.27 0.34 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170605 0100644 0001755 0000024 00000000225 10146637160 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170605 0100644 0001755 0000024 00000000224 10146637160 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.39 0.41 73 17 796 91 27 3 0
data-in/Linux_hwnode2_200411170605 0100644 0001755 0000024 00000000225 10146637157 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 81 15 757 223 23 4 0
data-in/FreeBSD_mb2_200411170605 0100644 0001755 0000024 00000000000 10146637155 014211 0 ustar djh staff data-in/FreeBSD_r4p_200411170605 0100644 0001755 0000024 00000000611 10146637160 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.03 0.00 9 0 0 2 0 116 51 8 1 6 0 309 1 213 4026368 162918400 247730176 1552289792 138833920 1969424718 1600394322
data-in/FreeBSD_psa4_200411170605 0100644 0001755 0000024 00000000535 10146637160 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104185996 122831772
data-in/FreeBSD_psa3_200411170605 0100644 0001755 0000024 00000000621 10146637162 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.31 1.26 1.16 21 2 10 36 2 149 35 8 1 2120 6179 1612 6 2422 3530752 331755520 1083179008 581500928 98467840 1297602613 1659669615
data-in/FreeBSD_psa2_200411170605 0100644 0001755 0000024 00000000617 10146637160 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.21 0.24 0.17 13 0 1 34 0 133 72 7 1 720 757 2802 0 138 1012015104 287678464 341463040 444534784 20758528 1989823889 92983640
data-in/FreeBSD_pinky_200411170605 0100644 0001755 0000024 00000000565 10146637161 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.05 0.41 0.53 71 13 31 52 75 302 10 14 5 0 0 9744384 169402368 744628224 86749184 32878592 981011424 3775379127 11 0
data-in/Linux_r1m2_200411170605 0100644 0001755 0000024 00000000314 10146637161 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.09 86 81 34 135 20 3 3246 1981 72 1896
data-in/Linux_mb_200411170610 0100644 0001755 0000024 00000000155 10146637634 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.05 0.03 0.00 13 16 81 15 1
data-in/Linux_staging_200411170610 0100644 0001755 0000024 00000000166 10146637632 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.06 0.03 0.01 8 100 113 26 0
data-in/Linux_psa1_200411170610 0100644 0001755 0000024 00000000113 10146637634 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.05 0.02 4 26 227
data-in/Linux_r1z_200411170610 0100644 0001755 0000024 00000000311 10146637633 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 119 16 3 390 292 14 498
data-in/Linux_r1q_200411170610 0100644 0001755 0000024 00000000270 10146637635 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.37 2.52 2.54 89 77 42 132 20 545 422 7 1108
data-in/Linux_r1m2_200411170610 0100644 0001755 0000024 00000000314 10146637634 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.08 0.08 86 81 34 142 22 3 3310 2037 73 1938
data-in/Linux_r1m1_200411170610 0100644 0001755 0000024 00000000313 10146637635 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.08 0.08 69 73 29 160 50 3 1199 639 18 3607
data-in/Linux_r1f_200411170610 0100644 0001755 0000024 00000000274 10146637641 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.35 1.42 87 86 46 210 20 9388 14139 15 8879
data-in/Linux_r1a1_200411170610 0100644 0001755 0000024 00000000271 10146637634 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.07 0.10 0.15 83 35 14 123 25 575 378 32 1921
data-in/Linux_r1a_200411170610 0100644 0001755 0000024 00000000315 10146637640 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.45 1.48 1.44 91 33 27 190 20 23 5508 4551 93 7509
data-in/Linux_streamguys1_200411170610 0100644 0001755 0000024 00000000223 10146637636 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.50 1.97 1.17 49 60 612 45 8 3 0
data-in/Linux_steve_200411170610 0100644 0001755 0000024 00000000113 10146637635 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170610 0100644 0001755 0000024 00000000224 10146637635 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.31 0.36 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170610 0100644 0001755 0000024 00000000225 10146637635 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 489 132 15 3 0
data-in/Linux_hwnode3_200411170610 0100644 0001755 0000024 00000000224 10146637634 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.52 0.41 0.41 73 17 806 90 27 3 0
data-in/FreeBSD_mb2_200411170610 0100644 0001755 0000024 00000000000 10146637631 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170610 0100644 0001755 0000024 00000000611 10146637634 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 215 19861504 161103872 234176512 1552179200 138477568 1969721858 1604718728
data-in/FreeBSD_psa3_200411170610 0100644 0001755 0000024 00000000621 10146637637 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.66 1.01 1.08 21 2 10 36 2 127 34 8 1 2142 6341 1678 6 2550 3358720 369451008 646365184 978280448 100978688 1300502019 1667889470
data-in/FreeBSD_psa2_200411170610 0100644 0001755 0000024 00000000620 10146637633 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.16 0.15 13 0 1 34 0 140 73 7 1 763 821 2936 0 150 1004847104 286101504 343855104 450330624 21315584 1998668673 181760848
data-in/FreeBSD_pinky_200411170610 0100644 0001755 0000024 00000000565 10146637634 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.18 0.42 0.53 71 13 31 52 75 299 10 14 5 0 0 9347072 170545152 743940096 88121344 31449088 986462421 3780722857 11 0
data-in/Linux_hwnode2_200411170610 0100644 0001755 0000024 00000000225 10146637635 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.07 0.02 81 15 759 223 23 4 0
data-in/FreeBSD_psa4_200411170610 0100644 0001755 0000024 00000000535 10146637634 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.01 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811927040 137216000 104198144 45060096 32768 104192063 122838914
data-in/Linux_mb_200411170615 0100644 0001755 0000024 00000000155 10146640312 014015 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/Linux_staging_200411170615 0100644 0001755 0000024 00000000166 10146640311 015054 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.87 0.45 0.17 8 100 114 26 0
data-in/Linux_psa1_200411170615 0100644 0001755 0000024 00000000113 10146640311 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.02 0.04 0.00 4 26 227
data-in/Linux_r1z_200411170615 0100644 0001755 0000024 00000000311 10146640312 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.00 0.00 84 34 23 127 18 3 398 294 14 516
data-in/Linux_r1q_200411170615 0100644 0001755 0000024 00000000270 10146640310 014116 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.52 2.42 2.47 89 77 42 137 20 566 443 7 1172
data-in/Linux_r1m2_200411170615 0100644 0001755 0000024 00000000314 10146640311 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.05 0.07 86 81 34 141 20 3 3374 2081 74 1972
data-in/Linux_r1m1_200411170615 0100644 0001755 0000024 00000000313 10146640311 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.11 0.09 69 73 29 176 50 3 1238 657 18 3687
data-in/Linux_r1f_200411170615 0100644 0001755 0000024 00000000274 10146640316 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.35 1.37 1.41 87 86 46 205 20 9423 14209 15 8891
data-in/Linux_r1a1_200411170615 0100644 0001755 0000024 00000000271 10146640307 014166 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.06 0.13 0.15 83 35 14 130 25 588 390 36 2000
data-in/Linux_streamguys1_200411170615 0100644 0001755 0000024 00000000223 10146640312 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.49 0.99 0.95 49 60 617 45 8 3 0
data-in/Linux_steve_200411170615 0100644 0001755 0000024 00000000113 10146640312 014537 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170615 0100644 0001755 0000024 00000000224 10146640312 014516 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.29 0.34 0.33 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170615 0100644 0001755 0000024 00000000225 10146640311 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.06 0.05 0.02 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170615 0100644 0001755 0000024 00000000224 10146640310 014761 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.51 0.42 0.40 73 17 809 92 30 3 0
data-in/Linux_hwnode2_200411170615 0100644 0001755 0000024 00000000225 10146640311 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.07 0.02 81 15 761 223 23 4 0
data-in/FreeBSD_mb2_200411170615 0100644 0001755 0000024 00000000000 10146640305 014201 0 ustar djh staff data-in/Linux_r1a_200411170615 0100644 0001755 0000024 00000000315 10146640313 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.31 1.42 1.42 91 33 27 188 20 23 5525 4568 94 7535
data-in/FreeBSD_r4p_200411170615 0100644 0001755 0000024 00000000611 10146640307 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 217 19582976 161218560 234434560 1552084992 138477568 1970053897 1609987832
data-in/FreeBSD_psa4_200411170615 0100644 0001755 0000024 00000000535 10146640310 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104197964 122845976
data-in/FreeBSD_psa2_200411170615 0100644 0001755 0000024 00000000620 10146640311 014373 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.14 0.14 0.14 13 0 1 34 0 136 73 7 1 798 875 3097 0 161 1001213952 284172288 345493504 455020544 20549632 2005769016 230394191
data-in/FreeBSD_pinky_200411170615 0100644 0001755 0000024 00000000565 10146640311 014670 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.16 0.57 0.61 71 13 31 52 75 320 10 14 5 0 0 7995392 171532288 750710784 80519168 32645120 997735689 3786535989 11 0
data-in/FreeBSD_psa3_200411170615 0100644 0001755 0000024 00000000622 10146640312 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.92 0.96 1.04 21 2 10 36 2 134 32 8 1 2192 6467 1694 12 2689 3473408 368467968 636125184 1000189952 90177536 1347688847 3535373401
data-in/Linux_mb_200411170620 0100644 0001755 0000024 00000000155 10146640765 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 81 15 1
data-in/Linux_staging_200411170620 0100644 0001755 0000024 00000000166 10146640765 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.78 1.30 0.59 8 100 114 26 0
data-in/Linux_psa1_200411170620 0100644 0001755 0000024 00000000113 10146640764 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 227
data-in/Linux_r1z_200411170620 0100644 0001755 0000024 00000000311 10146640765 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.01 0.00 84 34 23 121 18 3 409 311 14 539
data-in/Linux_r1m2_200411170620 0100644 0001755 0000024 00000000314 10146640763 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 136 20 3 3419 2116 77 2016
data-in/Linux_r1m1_200411170620 0100644 0001755 0000024 00000000313 10146640765 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.10 69 73 29 168 50 3 1256 660 18 3757
data-in/Linux_r1f_200411170620 0100644 0001755 0000024 00000000274 10146640773 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.78 1.50 1.44 87 86 46 209 20 9464 14279 15 8899
data-in/Linux_r1a1_200411170620 0100644 0001755 0000024 00000000271 10146640765 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.19 0.17 83 35 14 127 25 611 418 36 2078
data-in/Linux_r1a_200411170620 0100644 0001755 0000024 00000000315 10146640771 014105 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.24 1.68 1.50 91 33 27 192 20 23 5552 4575 95 7562
data-in/Linux_streamguys1_200411170620 0100644 0001755 0000024 00000000223 10146640765 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.47 1.01 0.92 49 60 613 45 8 3 0
data-in/Linux_steve_200411170620 0100644 0001755 0000024 00000000113 10146640764 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170620 0100644 0001755 0000024 00000000224 10146640764 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.13 0.26 0.30 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170620 0100644 0001755 0000024 00000000225 10146640764 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170620 0100644 0001755 0000024 00000000224 10146640763 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.37 0.37 73 17 806 92 27 3 0
data-in/Linux_hwnode2_200411170620 0100644 0001755 0000024 00000000225 10146640765 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 766 223 23 4 0
data-in/Linux_r1q_200411170620 0100644 0001755 0000024 00000000270 10146640766 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.50 3.07 2.73 89 77 42 139 21 590 461 7 1239
data-in/FreeBSD_mb2_200411170620 0100644 0001755 0000024 00000000000 10146640760 014202 0 ustar djh staff data-in/FreeBSD_r4p_200411170620 0100644 0001755 0000024 00000000611 10146640764 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 219 19419136 161226752 234590208 1552084992 138477568 1970507036 1617870626
data-in/FreeBSD_psa4_200411170620 0100644 0001755 0000024 00000000535 10146640764 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104204693 122853394
data-in/FreeBSD_pinky_200411170620 0100644 0001755 0000024 00000000570 10146640764 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.07 0.45 0.57 71 13 31 52 75 322 10 14 11 0 0 10838016 170688512 749457408 68870144 43548672 1009624688 3793333010 11 0
data-in/FreeBSD_psa3_200411170620 0100644 0001755 0000024 00000000622 10146640766 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.93 0.91 0.98 21 2 10 36 2 137 35 8 1 2236 6591 1732 18 2818 3346432 368889856 649146368 1001984000 75067392 1424572454 2339737041
data-in/FreeBSD_psa2_200411170620 0100644 0001755 0000024 00000000617 10146640763 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.29 0.14 0.13 13 0 1 34 0 138 77 7 1 849 968 3246 0 171 994942976 282787840 348135424 459632640 20951040 2014077561 314630168
data-in/Linux_staging_200411170625 0100644 0001755 0000024 00000000166 10146641440 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
1.08 1.08 0.68 8 100 114 26 0
data-in/Linux_psa1_200411170625 0100644 0001755 0000024 00000000113 10146641440 014261 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170625 0100644 0001755 0000024 00000000311 10146641440 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.03 0.00 84 34 23 148 42 3 425 318 14 563
data-in/Linux_r1q_200411170625 0100644 0001755 0000024 00000000270 10146641441 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.39 2.61 2.61 89 77 42 138 20 619 470 8 1303
data-in/Linux_r1m2_200411170625 0100644 0001755 0000024 00000000314 10146641437 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.06 0.06 0.07 86 81 34 139 20 3 3477 2156 77 2061
data-in/Linux_r1m1_200411170625 0100644 0001755 0000024 00000000313 10146641440 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.08 69 73 29 164 50 3 1280 678 18 3829
data-in/Linux_r1f_200411170625 0100644 0001755 0000024 00000000274 10146641446 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.40 1.49 1.45 87 86 46 207 20 9516 14340 15 8910
data-in/Linux_r1a1_200411170625 0100644 0001755 0000024 00000000271 10146641441 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.21 0.18 83 35 14 123 25 633 431 38 2157
data-in/Linux_steve_200411170625 0100644 0001755 0000024 00000000113 10146641442 014545 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_streamguys1_200411170625 0100644 0001755 0000024 00000000223 10146641440 015703 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.45 0.61 0.75 49 60 613 45 8 3 0
data-in/Linux_mnode_200411170625 0100644 0001755 0000024 00000000224 10146641437 014530 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.17 0.26 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode3_200411170625 0100644 0001755 0000024 00000000224 10146641440 014767 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.42 0.41 73 17 797 91 27 3 0
data-in/Linux_hwnode2_200411170625 0100644 0001755 0000024 00000000225 10146641441 014770 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.04 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170625 0100644 0001755 0000024 00000000000 10146641434 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170625 0100644 0001755 0000024 00000000611 10146641440 014240 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 222 18558976 161304576 235388928 1552068608 138477568 1970942130 1621790898
data-in/FreeBSD_psa4_200411170625 0100644 0001755 0000024 00000000535 10146641440 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104209846 122860224
data-in/FreeBSD_psa3_200411170625 0100644 0001755 0000024 00000000621 10146641440 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
1.03 0.96 0.98 21 2 10 36 2 145 43 8 1 2272 6721 1776 21 2955 3530752 369238016 661561344 989405184 74698752 1499366041 1041169503
data-in/FreeBSD_psa2_200411170625 0100644 0001755 0000024 00000000620 10146641440 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.23 0.15 0.12 13 0 1 34 0 136 73 7 1 888 1030 3388 0 182 996651008 282480640 343556096 462790656 20971520 2022220618 373829481
data-in/FreeBSD_pinky_200411170625 0100644 0001755 0000024 00000000570 10146641440 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.14 0.58 0.65 71 13 31 52 75 316 10 14 17 0 0 12181504 170795008 749981696 80941056 29503488 1014932164 3799057634 11 0
data-in/Linux_mb_200411170625 0100644 0001755 0000024 00000000155 10146641440 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 82 15 1
data-in/Linux_r1a_200411170625 0100644 0001755 0000024 00000000315 10146641443 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.17 1.39 1.43 91 33 27 187 20 23 5564 4605 95 7589
data-in/Linux_hwnode5_200411170625 0100644 0001755 0000024 00000000225 10146641440 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 492 132 15 3 0
data-in/Linux_mb_200411170630 0100644 0001755 0000024 00000000155 10146642115 014015 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.01 0.00 0.00 13 16 73 15 1
data-in/Linux_staging_200411170630 0100644 0001755 0000024 00000000166 10146642114 015054 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.15 0.69 0.64 8 100 109 28 0
data-in/Linux_psa1_200411170630 0100644 0001755 0000024 00000000113 10146642114 014254 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170630 0100644 0001755 0000024 00000000311 10146642116 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.27 0.07 0.02 84 34 23 142 37 3 439 330 14 581
data-in/Linux_r1q_200411170630 0100644 0001755 0000024 00000000270 10146642116 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.49 2.50 2.55 89 77 42 140 21 652 485 8 1372
data-in/Linux_r1m2_200411170630 0100644 0001755 0000024 00000000314 10146642114 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.06 0.06 86 81 34 137 20 3 3529 2209 82 2115
data-in/Linux_r1m1_200411170630 0100644 0001755 0000024 00000000313 10146642114 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.33 0.12 0.09 69 73 29 178 50 3 1312 688 18 3910
data-in/Linux_r1f_200411170630 0100644 0001755 0000024 00000000274 10146642122 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.60 1.43 1.43 87 86 46 202 20 9562 14376 15 8918
data-in/Linux_r1a1_200411170630 0100644 0001755 0000024 00000000271 10146642115 014162 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.66 0.38 0.24 83 35 14 141 43 648 448 40 2234
data-in/Linux_r1a_200411170630 0100644 0001755 0000024 00000000315 10146642121 014075 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.57 1.36 1.38 91 33 27 187 20 23 5587 4613 95 7613
data-in/Linux_steve_200411170630 0100644 0001755 0000024 00000000113 10146642116 014540 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170630 0100644 0001755 0000024 00000000224 10146642114 014515 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.19 0.29 0.28 78 47 142 38 1 12 0
data-in/Linux_hwnode5_200411170630 0100644 0001755 0000024 00000000225 10146642115 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 497 132 15 3 0
data-in/Linux_hwnode3_200411170630 0100644 0001755 0000024 00000000224 10146642115 014763 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.75 0.56 0.45 73 17 808 94 27 3 0
data-in/Linux_hwnode2_200411170630 0100644 0001755 0000024 00000000225 10146642114 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.04 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170630 0100644 0001755 0000024 00000000000 10146642110 014172 0 ustar djh staff data-in/FreeBSD_r4p_200411170630 0100644 0001755 0000024 00000000611 10146642114 014233 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 315 1 224 17915904 161366016 235986944 1552052224 138477568 1971255482 1625317373
data-in/FreeBSD_psa4_200411170630 0100644 0001755 0000024 00000000535 10146642114 014402 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811922944 137220096 104198144 45060096 32768 104223537 122877362
data-in/FreeBSD_psa3_200411170630 0100644 0001755 0000024 00000000622 10146642115 014377 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.45 0.73 21 2 10 24 2 123 33 8 1 2322 6849 1790 22 3080 1196371968 231989248 632160256 35237888 2674688 1505340375 1183380126
data-in/FreeBSD_psa2_200411170630 0100644 0001755 0000024 00000000620 10146642113 014372 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.08 0.08 13 0 1 34 0 137 74 7 1 970 1089 3897 0 192 991277056 282501120 345460736 466034688 21176320 2031935348 452212099
data-in/FreeBSD_pinky_200411170630 0100644 0001755 0000024 00000000570 10146642116 014666 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
3.17 1.12 0.84 71 13 31 52 75 327 10 14 17 0 0 11448320 170045440 759414784 62910464 43372544 1021813794 3805257508 11 0
data-in/Linux_streamguys1_200411170630 0100644 0001755 0000024 00000000223 10146642115 015677 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.42 0.62 49 60 612 45 8 3 0
data-in/Linux_psa1_200411170635 0100644 0001755 0000024 00000000113 10146642571 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.05 0.02 4 26 226
data-in/Linux_r1z_200411170635 0100644 0001755 0000024 00000000311 10146642571 014140 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.05 0.01 84 34 23 134 35 3 458 344 14 602
data-in/Linux_r1q_200411170635 0100644 0001755 0000024 00000000270 10146642570 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.72 2.83 2.69 89 77 42 135 20 690 494 8 1430
data-in/Linux_r1m2_200411170635 0100644 0001755 0000024 00000000314 10146642571 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.14 0.09 86 81 34 132 21 3 3588 2249 84 2164
data-in/Linux_r1m1_200411170635 0100644 0001755 0000024 00000000313 10146642571 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.11 0.08 69 73 29 167 50 3 1328 690 18 3994
data-in/Linux_r1f_200411170635 0100644 0001755 0000024 00000000274 10146642576 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.34 1.42 1.43 87 86 46 200 20 9598 14421 15 8932
data-in/Linux_r1a1_200411170635 0100644 0001755 0000024 00000000271 10146642572 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.27 0.22 83 35 14 131 31 668 459 40 2326
data-in/Linux_r1a_200411170635 0100644 0001755 0000024 00000000315 10146642576 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.93 1.65 1.49 91 33 27 191 20 23 5598 4628 96 7642
data-in/Linux_steve_200411170635 0100644 0001755 0000024 00000000113 10146642572 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_streamguys1_200411170635 0100644 0001755 0000024 00000000223 10146642572 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.34 0.51 0.60 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170635 0100644 0001755 0000024 00000000224 10146642571 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.14 0.26 0.26 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170635 0100644 0001755 0000024 00000000225 10146642571 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170635 0100644 0001755 0000024 00000000224 10146642570 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.25 0.70 0.51 73 17 792 93 27 3 0
data-in/FreeBSD_mb2_200411170635 0100644 0001755 0000024 00000000000 10146642565 014215 0 ustar djh staff data-in/FreeBSD_r4p_200411170635 0100644 0001755 0000024 00000000611 10146642571 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.03 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 226 17367040 161402880 236498944 1552052224 138477568 1971622241 1628268835
data-in/FreeBSD_psa4_200411170635 0100644 0001755 0000024 00000000535 10146642571 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811918848 137224192 104198144 45060096 32768 104440536 122892142
data-in/FreeBSD_psa3_200411170635 0100644 0001755 0000024 00000000622 10146642570 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.22 0.53 21 2 10 24 2 143 34 8 1 2350 7029 1802 22 3196 1124519936 279474176 657539072 32124928 4775936 1507704249 1197166271
data-in/FreeBSD_psa2_200411170635 0100644 0001755 0000024 00000000621 10146642571 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
2.25 0.86 0.38 13 0 1 34 0 135 71 7 1 1007 1145 3980 0 203 987136000 283160576 344584192 470290432 21278720 2040784900 510679277
data-in/FreeBSD_pinky_200411170635 0100644 0001755 0000024 00000000570 10146642571 014700 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.49 1.17 0.91 71 13 31 52 75 313 10 14 17 0 0 12926976 171167744 754565120 78016512 26726400 1027361730 3810743406 11 0
data-in/Linux_mb_200411170635 0100644 0001755 0000024 00000000155 10146642571 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170635 0100644 0001755 0000024 00000000166 10146642570 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.24 0.45 8 100 109 28 0
data-in/Linux_hwnode2_200411170635 0100644 0001755 0000024 00000000225 10146642571 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.07 0.08 0.02 81 15 769 224 23 4 0
data-in/Linux_mb_200411170640 0100644 0001755 0000024 00000000155 10146643243 014021 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 77 15 1
data-in/Linux_staging_200411170640 0100644 0001755 0000024 00000000166 10146643243 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.09 0.32 8 100 109 28 0
data-in/Linux_psa1_200411170640 0100644 0001755 0000024 00000000113 10146643245 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.03 0.02 0.00 4 26 223
data-in/Linux_r1z_200411170640 0100644 0001755 0000024 00000000311 10146643246 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.03 0.00 84 34 23 130 29 3 466 351 14 619
data-in/Linux_r1q_200411170640 0100644 0001755 0000024 00000000270 10146643244 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.47 2.52 2.58 89 77 42 140 20 727 518 9 1505
data-in/Linux_r1m2_200411170640 0100644 0001755 0000024 00000000314 10146643245 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 86 81 34 130 21 3 3627 2312 85 2209
data-in/Linux_r1m1_200411170640 0100644 0001755 0000024 00000000313 10146643244 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.09 0.08 69 73 29 166 50 3 1356 701 18 4073
data-in/Linux_r1f_200411170640 0100644 0001755 0000024 00000000274 10146643251 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.24 1.26 1.35 87 86 46 203 20 9614 14460 15 8940
data-in/Linux_r1a1_200411170640 0100644 0001755 0000024 00000000271 10146643244 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.34 0.25 0.21 83 35 14 130 31 682 466 42 2408
data-in/Linux_r1a_200411170640 0100644 0001755 0000024 00000000315 10146643246 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.36 1.48 1.45 91 33 27 188 20 23 5626 4644 96 7666
data-in/Linux_streamguys1_200411170640 0100644 0001755 0000024 00000000223 10146643246 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.81 0.56 0.57 49 60 614 47 8 3 0
data-in/Linux_steve_200411170640 0100644 0001755 0000024 00000000113 10146643247 014547 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170640 0100644 0001755 0000024 00000000224 10146643245 014524 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.31 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170640 0100644 0001755 0000024 00000000225 10146643243 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 495 133 15 3 0
data-in/Linux_hwnode3_200411170640 0100644 0001755 0000024 00000000224 10146643245 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.37 0.62 0.53 73 17 795 95 27 3 0
data-in/Linux_hwnode2_200411170640 0100644 0001755 0000024 00000000225 10146643246 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170640 0100644 0001755 0000024 00000000000 10146643241 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170640 0100644 0001755 0000024 00000000611 10146643245 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.07 0.02 0.01 9 0 0 2 0 75 10 8 1 6 0 321 1 229 17571840 161435648 236273664 1552039936 138477568 1972032168 1631480025
data-in/FreeBSD_psa4_200411170640 0100644 0001755 0000024 00000000535 10146643243 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137224192 104202240 45060096 32768 104479301 122898566
data-in/FreeBSD_psa3_200411170640 0100644 0001755 0000024 00000000622 10146643245 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.11 0.15 0.40 21 2 10 24 2 140 35 8 1 2396 7177 1840 22 3319 1116893184 300290048 642326528 32632832 6291456 1510454235 1213781467
data-in/FreeBSD_psa2_200411170640 0100644 0001755 0000024 00000000621 10146643245 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.84 0.55 0.35 13 0 1 34 0 136 76 7 1 1052 1202 4114 0 214 989560832 283095040 338702336 473505792 21585920 2050347697 591627087
data-in/FreeBSD_pinky_200411170640 0100644 0001755 0000024 00000000570 10146643245 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.10 0.54 0.69 71 13 31 52 75 319 10 14 17 0 0 10407936 171159552 755511296 52576256 53747712 1032945139 3816188971 11 0
data-in/Linux_mb_200411170645 0100644 0001755 0000024 00000000155 10146643721 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 87 15 1
data-in/Linux_staging_200411170645 0100644 0001755 0000024 00000000166 10146643721 015067 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.22 8 100 109 28 0
data-in/Linux_psa1_200411170645 0100644 0001755 0000024 00000000113 10146643720 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 225
data-in/Linux_r1z_200411170645 0100644 0001755 0000024 00000000311 10146643723 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.04 0.01 84 34 23 138 24 3 490 360 14 640
data-in/Linux_r1q_200411170645 0100644 0001755 0000024 00000000270 10146643723 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.41 2.38 2.49 89 77 42 143 20 768 533 9 1564
data-in/Linux_r1m2_200411170645 0100644 0001755 0000024 00000000314 10146643722 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.15 0.09 0.08 86 81 34 145 20 3 3682 2381 86 2248
data-in/Linux_r1m1_200411170645 0100644 0001755 0000024 00000000313 10146643722 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.10 0.09 69 73 29 170 50 3 1378 716 18 4155
data-in/Linux_r1f_200411170645 0100644 0001755 0000024 00000000274 10146643727 014131 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.52 1.34 1.35 87 86 46 201 20 9647 14518 15 8950
data-in/Linux_r1a1_200411170645 0100644 0001755 0000024 00000000271 10146643720 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.48 0.31 0.23 83 35 14 136 31 708 476 44 2502
data-in/Linux_r1a_200411170645 0100644 0001755 0000024 00000000315 10146643724 014115 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.13 1.34 1.41 91 33 27 186 20 23 5642 4655 96 7692
data-in/Linux_streamguys1_200411170645 0100644 0001755 0000024 00000000223 10146643722 015712 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.87 0.89 0.69 49 60 614 45 8 3 0
data-in/Linux_steve_200411170645 0100644 0001755 0000024 00000000113 10146643722 014552 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.01 0.00 73 63 2376
data-in/Linux_mnode_200411170645 0100644 0001755 0000024 00000000224 10146643722 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.54 0.42 0.32 78 47 137 38 1 12 0
data-in/Linux_hwnode5_200411170645 0100644 0001755 0000024 00000000225 10146643721 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 500 132 15 3 0
data-in/Linux_hwnode3_200411170645 0100644 0001755 0000024 00000000224 10146643721 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.23 0.41 0.46 73 17 807 95 27 3 0
data-in/Linux_hwnode2_200411170645 0100644 0001755 0000024 00000000225 10146643721 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.01 0.05 0.02 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170645 0100644 0001755 0000024 00000000000 10146643715 014214 0 ustar djh staff data-in/FreeBSD_r4p_200411170645 0100644 0001755 0000024 00000000611 10146643720 014245 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 321 1 231 17567744 161447936 236277760 1552027648 138477568 1972500252 1637364583
data-in/FreeBSD_psa4_200411170645 0100644 0001755 0000024 00000000535 10146643720 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137224192 104202240 45060096 32768 104486066 122906074
data-in/FreeBSD_psa3_200411170645 0100644 0001755 0000024 00000000622 10146643721 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.28 0.19 0.33 21 2 10 24 2 144 38 8 1 2452 7355 1862 22 3457 1086070784 310915072 660168704 34476032 6803456 1513540031 1228670270
data-in/FreeBSD_psa2_200411170645 0100644 0001755 0000024 00000000621 10146643720 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.06 0.28 0.27 13 0 1 34 0 135 73 7 1 1076 1272 4155 0 227 993808384 282824704 331485184 477683712 20647936 2059301796 679648712
data-in/FreeBSD_pinky_200411170645 0100644 0001755 0000024 00000000570 10146643721 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.10 0.71 0.68 71 13 31 52 75 309 10 14 17 0 0 13205504 171339776 751562752 67604480 39690240 1038305976 3821511480 11 0
data-in/Linux_mb_200411170650 0100644 0001755 0000024 00000000155 10146644373 014027 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_staging_200411170650 0100644 0001755 0000024 00000000166 10146644374 015070 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.15 8 100 110 28 0
data-in/Linux_psa1_200411170650 0100644 0001755 0000024 00000000113 10146644373 014267 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 227
data-in/Linux_r1z_200411170650 0100644 0001755 0000024 00000000311 10146644375 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.04 0.00 84 34 23 121 18 3 514 373 14 662
data-in/Linux_r1q_200411170650 0100644 0001755 0000024 00000000270 10146644375 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.15 2.98 2.71 89 77 42 144 21 795 564 9 1632
data-in/Linux_r1m2_200411170650 0100644 0001755 0000024 00000000314 10146644373 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.14 0.10 86 81 34 131 20 3 3728 2422 89 2296
data-in/Linux_r1m1_200411170650 0100644 0001755 0000024 00000000313 10146644373 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.07 0.08 69 73 29 172 50 3 1395 723 18 4236
data-in/Linux_r1f_200411170650 0100644 0001755 0000024 00000000274 10146644424 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.25 1.24 1.29 87 86 46 197 20 9685 14580 15 8961
data-in/Linux_r1a1_200411170650 0100644 0001755 0000024 00000000271 10146644374 014175 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.33 0.26 83 35 14 127 29 723 505 44 2590
data-in/Linux_streamguys1_200411170650 0100644 0001755 0000024 00000000223 10146644375 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.62 0.71 0.65 49 60 613 45 8 3 0
data-in/Linux_steve_200411170650 0100644 0001755 0000024 00000000113 10146644375 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170650 0100644 0001755 0000024 00000000224 10146644375 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.32 0.31 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170650 0100644 0001755 0000024 00000000225 10146644375 015002 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170650 0100644 0001755 0000024 00000000225 10146644375 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.54 0.47 0.46 73 17 812 100 27 3 0
data-in/Linux_hwnode2_200411170650 0100644 0001755 0000024 00000000225 10146644374 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/Linux_r1a_200411170650 0100644 0001755 0000024 00000000315 10146644400 014101 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.85 1.55 1.46 91 33 27 192 20 23 5652 4684 97 7713
data-in/FreeBSD_mb2_200411170650 0100644 0001755 0000024 00000000000 10146644370 014206 0 ustar djh staff data-in/FreeBSD_r4p_200411170650 0100644 0001755 0000024 00000000611 10146644374 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.02 0.00 9 0 0 2 0 75 10 8 1 6 0 321 1 234 17547264 161468416 236277760 1552027648 138477568 1972896936 1641893104
data-in/FreeBSD_psa4_200411170650 0100644 0001755 0000024 00000000535 10146644373 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811873792 137224192 104251392 45051904 32768 104493379 122913264
data-in/FreeBSD_psa3_200411170650 0100644 0001755 0000024 00000000624 10146644373 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.10 0.18 0.28 21 2 10 24 2 136 42 10 1 2486 7497 1882 22 3597 1057308672 328241152 659824640 36929536 16130048 1516848639 1255651210
data-in/FreeBSD_psa2_200411170650 0100644 0001755 0000024 00000000621 10146644374 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.11 0.19 13 0 1 34 0 137 75 7 1 1112 1328 4269 0 237 988360704 283693056 329576448 484106240 20713472 2066691970 741454272
data-in/FreeBSD_pinky_200411170650 0100644 0001755 0000024 00000000567 10146644374 014706 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.22 0.86 0.71 71 13 31 52 75 300 10 14 17 0 0 9936896 170676224 754728960 70606848 37453824 1043665891 3826884846 11 0
data-in/Linux_staging_200411170655 0100644 0001755 0000024 00000000166 10146645050 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.02 0.10 8 100 109 28 0
data-in/Linux_psa1_200411170655 0100644 0001755 0000024 00000000113 10146645051 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.06 0.04 0.01 4 26 224
data-in/Linux_r1z_200411170655 0100644 0001755 0000024 00000000311 10146645050 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.07 0.01 84 34 23 149 46 3 523 385 15 681
data-in/Linux_r1q_200411170655 0100644 0001755 0000024 00000000271 10146645052 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.63 2.65 2.63 89 77 42 145 25 827 575 10 1700
data-in/Linux_r1m2_200411170655 0100644 0001755 0000024 00000000314 10146645051 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.17 0.18 0.12 86 81 34 136 22 3 3779 2485 89 2337
data-in/Linux_r1m1_200411170655 0100644 0001755 0000024 00000000313 10146645051 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.27 0.13 0.09 69 73 29 164 50 3 1427 731 18 4323
data-in/Linux_r1f_200411170655 0100644 0001755 0000024 00000000274 10146645061 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.65 1.36 1.31 87 86 46 205 20 9729 14624 15 8973
data-in/Linux_r1a1_200411170655 0100644 0001755 0000024 00000000271 10146645052 014174 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.24 0.24 83 35 14 136 33 738 507 46 2687
data-in/Linux_r1a_200411170655 0100644 0001755 0000024 00000000315 10146645054 014114 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.39 1.42 91 33 27 186 20 23 5664 4701 97 7735
data-in/Linux_streamguys1_200411170655 0100644 0001755 0000024 00000000223 10146645054 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.51 1.44 0.95 49 60 612 45 8 3 0
data-in/Linux_steve_200411170655 0100644 0001755 0000024 00000000113 10146645052 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170655 0100644 0001755 0000024 00000000224 10146645051 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.31 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170655 0100644 0001755 0000024 00000000225 10146645051 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170655 0100644 0001755 0000024 00000000224 10146645050 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.24 0.47 0.47 73 17 816 97 27 3 0
data-in/Linux_hwnode2_200411170655 0100644 0001755 0000024 00000000225 10146645050 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 764 224 23 4 0
data-in/FreeBSD_mb2_200411170655 0100644 0001755 0000024 00000000000 10146645045 014213 0 ustar djh staff data-in/FreeBSD_r4p_200411170655 0100644 0001755 0000024 00000000611 10146645050 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 76 11 8 1 6 0 321 1 236 17829888 161574912 235864064 1552052224 138477568 1973178276 1644898641
data-in/FreeBSD_psa4_200411170655 0100644 0001755 0000024 00000000535 10146645051 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137228288 104202240 45060096 32768 104499736 122920262
data-in/FreeBSD_psa3_200411170655 0100644 0001755 0000024 00000000624 10146645051 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.19 0.21 0.25 21 2 10 24 2 132 38 12 1 2532 7643 1896 25 3725 1029914624 328560640 670109696 52035584 17813504 1520264227 1274925915
data-in/FreeBSD_psa2_200411170655 0100644 0001755 0000024 00000000621 10146645051 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.19 0.11 0.16 13 0 1 34 0 133 72 7 1 1139 1412 4316 0 248 989335552 282947584 325275648 487432192 21458944 2074418607 796674534
data-in/Linux_mb_200411170655 0100644 0001755 0000024 00000000155 10146645050 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/FreeBSD_pinky_200411170655 0100644 0001755 0000024 00000000570 10146645051 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
3.10 1.12 0.81 71 13 31 52 75 319 10 14 17 0 0 12873728 171454464 752058368 71700480 35315712 1048826770 3832011103 11 0
data-in/Linux_mb_200411170700 0100644 0001755 0000024 00000000155 10146645525 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.09 0.04 0.01 13 16 78 15 1
data-in/Linux_staging_200411170700 0100644 0001755 0000024 00000000166 10146645523 015061 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.07 8 100 109 28 0
data-in/Linux_psa1_200411170700 0100644 0001755 0000024 00000000113 10146645525 014263 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.06 0.02 4 26 228
data-in/Linux_r1z_200411170700 0100644 0001755 0000024 00000000311 10146645527 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.05 0.00 84 34 23 169 59 3 547 399 15 703
data-in/Linux_r1q_200411170700 0100644 0001755 0000024 00000000271 10146645525 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.29 2.43 2.53 89 77 42 144 21 861 585 10 1762
data-in/Linux_r1m2_200411170700 0100644 0001755 0000024 00000000314 10146645525 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.28 0.19 0.12 86 81 34 141 20 3 3833 2536 90 2382
data-in/Linux_r1m1_200411170700 0100644 0001755 0000024 00000000313 10146645526 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.13 0.09 69 73 29 176 50 3 1450 737 18 4403
data-in/Linux_r1f_200411170700 0100644 0001755 0000024 00000000274 10146645535 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.70 1.43 1.34 87 86 46 211 20 9771 14677 15 8982
data-in/Linux_r1a1_200411170700 0100644 0001755 0000024 00000000271 10146645525 014170 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.41 0.44 0.32 83 35 14 137 32 756 534 47 2770
data-in/Linux_r1a_200411170700 0100644 0001755 0000024 00000000315 10146645530 014102 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.09 1.24 1.34 91 33 27 184 20 23 5688 4715 99 7754
data-in/Linux_streamguys1_200411170700 0100644 0001755 0000024 00000000223 10146645526 015706 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.65 1.36 0.99 49 60 612 45 8 3 0
data-in/Linux_steve_200411170700 0100644 0001755 0000024 00000000113 10146645526 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170700 0100644 0001755 0000024 00000000224 10146645524 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.18 0.32 0.31 78 47 143 38 1 12 0
data-in/Linux_hwnode5_200411170700 0100644 0001755 0000024 00000000225 10146645525 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.03 0.00 19 52 496 132 15 3 0
data-in/Linux_hwnode3_200411170700 0100644 0001755 0000024 00000000224 10146645526 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.62 0.50 0.47 73 17 816 94 27 3 0
data-in/Linux_hwnode2_200411170700 0100644 0001755 0000024 00000000225 10146645526 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.03 0.01 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170700 0100644 0001755 0000024 00000000000 10146645521 014201 0 ustar djh staff data-in/FreeBSD_r4p_200411170700 0100644 0001755 0000024 00000000610 10146645525 014241 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 74 9 8 1 6 0 321 1 239 19341312 162144256 233836544 1551998976 138477568 1974063817 1647335197
data-in/FreeBSD_psa4_200411170700 0100644 0001755 0000024 00000000535 10146645525 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.08 0.02 0.01 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137228288 104198144 45060096 32768 104505413 122927388
data-in/FreeBSD_psa3_200411170700 0100644 0001755 0000024 00000000624 10146645525 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.30 0.22 0.24 21 2 10 24 2 142 40 10 1 2572 7765 1930 25 3861 1024208896 326037504 663781376 66478080 17928192 1525705233 1287127192
data-in/FreeBSD_psa2_200411170700 0100644 0001755 0000024 00000000621 10146645523 014401 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.08 0.38 0.30 13 0 1 34 0 131 71 7 1 1168 1489 4436 0 258 987422720 282415104 323473408 490807296 22331392 2082290801 858386975
data-in/FreeBSD_pinky_200411170700 0100644 0001755 0000024 00000000570 10146645526 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.59 0.66 71 13 31 52 75 287 10 14 17 0 0 10608640 169435136 753967104 74465280 34926592 1054215654 3837111502 11 0
data-in/Linux_mb_200411170705 0100644 0001755 0000024 00000000155 10146646200 014017 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.02 0.00 13 16 76 15 1
data-in/Linux_staging_200411170705 0100644 0001755 0000024 00000000166 10146646200 015057 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.04 8 100 109 28 0
data-in/Linux_psa1_200411170705 0100644 0001755 0000024 00000000113 10146646177 014274 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.16 0.05 0.01 4 26 224
data-in/Linux_r1z_200411170705 0100644 0001755 0000024 00000000311 10146646177 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.16 0.09 0.02 84 34 23 149 42 3 570 414 15 731
data-in/Linux_r1q_200411170705 0100644 0001755 0000024 00000000271 10146646201 014124 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.91 2.94 2.74 89 77 42 132 20 899 606 10 1827
data-in/Linux_r1m2_200411170705 0100644 0001755 0000024 00000000314 10146646201 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.12 0.10 86 81 34 128 20 3 3880 2576 92 2428
data-in/Linux_r1m1_200411170705 0100644 0001755 0000024 00000000313 10146646201 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.14 0.14 0.10 69 73 29 166 50 3 1491 752 18 4481
data-in/Linux_r1f_200411170705 0100644 0001755 0000024 00000000274 10146646207 014122 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.70 1.55 1.42 87 86 46 210 20 9817 14733 15 8995
data-in/Linux_r1a1_200411170705 0100644 0001755 0000024 00000000271 10146646176 014200 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.43 0.44 0.34 83 35 14 137 34 793 549 47 2863
data-in/Linux_r1a_200411170705 0100644 0001755 0000024 00000000316 10146646205 014110 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.10 1.52 1.41 91 33 27 189 20 23 5705 4742 101 7780
data-in/Linux_streamguys1_200411170705 0100644 0001755 0000024 00000000223 10146646201 015702 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.90 1.20 1.02 49 60 612 45 8 3 0
data-in/Linux_mnode_200411170705 0100644 0001755 0000024 00000000224 10146646201 014521 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.21 0.31 0.31 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170705 0100644 0001755 0000024 00000000225 10146646177 015005 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.04 0.05 0.01 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170705 0100644 0001755 0000024 00000000224 10146646200 014765 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.08 1.18 0.80 73 17 810 94 27 3 0
data-in/Linux_hwnode2_200411170705 0100644 0001755 0000024 00000000225 10146646201 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.07 0.01 81 15 759 224 23 4 0
data-in/FreeBSD_mb2_200411170705 0100644 0001755 0000024 00000000000 10146646174 014213 0 ustar djh staff data-in/FreeBSD_r4p_200411170705 0100644 0001755 0000024 00000000610 10146646177 014252 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.02 0.00 9 0 0 2 0 74 9 8 1 6 0 327 1 242 19238912 162246656 233832448 1552003072 138477568 1974383224 1649624599
data-in/FreeBSD_psa4_200411170705 0100644 0001755 0000024 00000000535 10146646177 014422 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.02 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811914752 137228288 104198144 45060096 32768 104512330 122934832
data-in/FreeBSD_psa3_200411170705 0100644 0001755 0000024 00000000624 10146646200 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.29 0.17 0.20 21 2 10 24 2 131 37 11 1 2630 7929 1948 25 4010 1011994624 323227648 663945216 80695296 18571264 1529553297 1298335354
data-in/FreeBSD_psa2_200411170705 0100644 0001755 0000024 00000000621 10146646201 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.03 0.16 0.22 13 0 1 34 0 133 73 7 1 1202 1543 4502 0 269 987189248 281702400 317366272 497668096 22523904 2090856612 911578503
data-in/FreeBSD_pinky_200411170705 0100644 0001755 0000024 00000000570 10146646200 014667 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.52 0.65 71 13 31 52 75 303 10 14 17 0 0 11276288 170434560 751308800 77578240 32804864 1059465917 3842461145 11 0
data-in/Linux_steve_200411170705 0100644 0001755 0000024 00000000113 10146646202 014543 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mb_200411170710 0100644 0001755 0000024 00000000155 10146646655 014031 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.05 0.01 0.00 13 16 81 15 1
data-in/Linux_staging_200411170710 0100644 0001755 0000024 00000000166 10146646652 015066 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.01 8 100 110 28 0
data-in/Linux_psa1_200411170710 0100644 0001755 0000024 00000000113 10146646654 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.01 0.00 4 26 224
data-in/Linux_r1z_200411170710 0100644 0001755 0000024 00000000311 10146646656 014142 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.08 0.02 84 34 23 137 32 3 597 430 15 750
data-in/Linux_r1q_200411170710 0100644 0001755 0000024 00000000271 10146646655 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.41 2.74 2.71 89 77 42 131 24 932 636 11 1898
data-in/Linux_r1m2_200411170710 0100644 0001755 0000024 00000000314 10146646653 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.16 0.11 86 81 34 133 20 3 3932 2626 94 2474
data-in/Linux_r1m1_200411170710 0100644 0001755 0000024 00000000313 10146646655 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.74 0.25 0.13 69 73 29 167 50 3 1533 765 22 4562
data-in/Linux_r1f_200411170710 0100644 0001755 0000024 00000000274 10146646662 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.40 1.52 1.45 87 86 46 204 20 9885 14791 15 9006
data-in/Linux_r1a1_200411170710 0100644 0001755 0000024 00000000271 10146646655 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.42 0.33 0.31 83 35 14 136 33 820 556 49 2962
data-in/Linux_r1a_200411170710 0100644 0001755 0000024 00000000316 10146646657 014117 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.50 1.38 1.37 91 33 27 184 20 23 5723 4750 101 7800
data-in/Linux_streamguys1_200411170710 0100644 0001755 0000024 00000000223 10146646655 015713 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.42 1.25 1.05 49 60 612 45 8 3 0
data-in/Linux_steve_200411170710 0100644 0001755 0000024 00000000113 10146646656 014554 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170710 0100644 0001755 0000024 00000000224 10146646654 014531 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.16 0.29 0.29 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170710 0100644 0001755 0000024 00000000225 10146646654 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 488 132 15 3 0
data-in/Linux_hwnode3_200411170710 0100644 0001755 0000024 00000000224 10146646655 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.40 0.71 0.70 73 17 807 94 27 3 0
data-in/Linux_hwnode2_200411170710 0100644 0001755 0000024 00000000225 10146646653 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 758 224 23 4 0
data-in/FreeBSD_r4p_200411170710 0100644 0001755 0000024 00000000610 10146646655 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.02 0.01 0.00 9 0 0 2 0 74 9 8 1 6 0 333 1 246 19021824 162168832 234139648 1551990784 138477568 1974802924 1658605253
data-in/FreeBSD_psa4_200411170710 0100644 0001755 0000024 00000000535 10146646653 014415 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137232384 104198144 45060096 32768 104517301 122941472
data-in/FreeBSD_psa3_200411170710 0100644 0001755 0000024 00000000622 10146646654 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.30 0.25 21 2 10 24 2 132 37 7 1 2696 8065 1988 25 4149 981995520 323354624 676397056 97869824 18817024 1532931275 1314123101
data-in/FreeBSD_psa2_200411170710 0100644 0001755 0000024 00000000621 10146646654 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.60 0.45 0.31 13 0 1 34 0 139 73 7 1 1236 1605 4608 0 282 981831680 279478272 319840256 502849536 22450176 2100629534 985785664
data-in/FreeBSD_mb2_200411170710 0100644 0001755 0000024 00000000000 10146646651 014207 0 ustar djh staff data-in/FreeBSD_pinky_200411170710 0100644 0001755 0000024 00000000567 10146646654 014706 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.23 0.42 0.58 71 13 31 52 75 312 10 14 18 0 0 9465856 170819584 752562176 56541184 54013952 1064726333 3847839487 11 0
data-in/Linux_mb_200411170715 0100644 0001755 0000024 00000000155 10146647327 014033 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_psa1_200411170715 0100644 0001755 0000024 00000000113 10146647330 014265 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 228
data-in/Linux_r1z_200411170715 0100644 0001755 0000024 00000000311 10146647332 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.06 0.01 84 34 23 130 23 3 618 440 15 777
data-in/Linux_r1q_200411170715 0100644 0001755 0000024 00000000271 10146647332 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.28 2.41 2.57 89 77 42 130 21 965 665 11 1959
data-in/Linux_r1m2_200411170715 0100644 0001755 0000024 00000000315 10146647331 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.19 0.13 0.09 86 81 34 142 20 3 3981 2681 101 2525
data-in/Linux_r1m1_200411170715 0100644 0001755 0000024 00000000313 10146647331 014204 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.14 0.10 69 73 29 181 50 3 1590 782 35 4652
data-in/Linux_r1f_200411170715 0100644 0001755 0000024 00000000274 10146647336 014127 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.82 1.49 1.44 87 86 46 201 20 9916 14876 15 9020
data-in/Linux_r1a1_200411170715 0100644 0001755 0000024 00000000271 10146647330 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.24 0.26 0.28 83 35 14 139 33 845 578 51 3055
data-in/Linux_r1a_200411170715 0100644 0001755 0000024 00000000316 10146647332 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.07 1.24 1.31 91 33 27 183 20 23 5744 4775 101 7823
data-in/Linux_streamguys1_200411170715 0100644 0001755 0000024 00000000223 10146647332 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.41 0.72 0.86 49 60 613 45 8 3 0
data-in/Linux_steve_200411170715 0100644 0001755 0000024 00000000113 10146647332 014551 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_hwnode5_200411170715 0100644 0001755 0000024 00000000225 10146647331 014777 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.10 0.04 19 52 487 132 15 3 0
data-in/Linux_hwnode3_200411170715 0100644 0001755 0000024 00000000224 10146647327 015001 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.83 0.76 0.72 73 17 797 94 27 3 0
data-in/Linux_hwnode2_200411170715 0100644 0001755 0000024 00000000225 10146647331 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.02 0.00 81 15 762 224 23 4 0
data-in/FreeBSD_mb2_200411170715 0100644 0001755 0000024 00000000000 10146647324 014212 0 ustar djh staff data-in/FreeBSD_r4p_200411170715 0100644 0001755 0000024 00000000610 10146647330 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 248 23834624 162119680 229388288 1551978496 138477568 1975098346 1661996909
data-in/FreeBSD_psa4_200411170715 0100644 0001755 0000024 00000000535 10146647326 014420 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811910656 137232384 104198144 45060096 32768 104524038 122948738
data-in/FreeBSD_psa3_200411170715 0100644 0001755 0000024 00000000623 10146647330 014410 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.24 0.23 21 2 10 24 2 132 39 7 1 2764 8195 2006 25 4306 963612672 325828608 683331584 104996864 20664320 1535698355 1329079015
data-in/FreeBSD_psa2_200411170715 0100644 0001755 0000024 00000000622 10146647330 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.36 0.30 0.27 13 0 1 34 0 137 73 7 1 1324 1671 4953 0 295 985718784 276496384 313286656 508383232 22564864 2109866503 1075809625
data-in/FreeBSD_pinky_200411170715 0100644 0001755 0000024 00000000570 10146647332 014677 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
2.69 0.96 0.76 71 13 31 52 75 319 10 14 19 0 0 20549632 158961664 747909120 64057344 55341056 1080929399 3853724607 11 0
data-in/Linux_staging_200411170715 0100644 0001755 0000024 00000000166 10146647330 015065 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_mnode_200411170715 0100644 0001755 0000024 00000000224 10146647327 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.39 0.34 0.30 78 47 134 38 1 12 0
data-in/Linux_mb_200411170720 0100644 0001755 0000024 00000000155 10146650004 014011 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_staging_200411170720 0100644 0001755 0000024 00000000166 10146650002 015047 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170720 0100644 0001755 0000024 00000000113 10146650003 014250 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.08 0.08 0.03 4 26 231
data-in/Linux_r1z_200411170720 0100644 0001755 0000024 00000000311 10146650006 014123 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.04 0.00 84 34 23 137 33 3 636 451 15 803
data-in/Linux_r1q_200411170720 0100644 0001755 0000024 00000000271 10146650005 014116 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.95 3.03 2.80 89 77 42 127 21 998 694 11 2041
data-in/Linux_r1m2_200411170720 0100644 0001755 0000024 00000000315 10146650004 014172 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.10 0.08 86 81 34 145 20 3 4021 2739 105 2568
data-in/Linux_r1m1_200411170720 0100644 0001755 0000024 00000000313 10146650004 014167 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.08 0.08 69 73 29 175 50 3 1609 789 39 4726
data-in/Linux_r1f_200411170720 0100644 0001755 0000024 00000000274 10146650012 014104 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.37 1.38 1.39 87 86 46 206 20 9952 14933 15 9032
data-in/Linux_r1a1_200411170720 0100644 0001755 0000024 00000000271 10146650003 014155 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.37 0.28 0.27 83 35 14 134 30 867 585 51 3156
data-in/Linux_r1a_200411170720 0100644 0001755 0000024 00000000316 10146650011 014073 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.68 1.38 1.33 91 33 27 188 20 23 5753 4791 102 7846
data-in/Linux_streamguys1_200411170720 0100644 0001755 0000024 00000000223 10146650006 015675 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.09 1.17 0.99 49 60 612 45 8 3 0
data-in/Linux_steve_200411170720 0100644 0001755 0000024 00000000113 10146650005 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170720 0100644 0001755 0000024 00000000224 10146650004 014512 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.17 0.27 0.27 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170720 0100644 0001755 0000024 00000000225 10146650004 014762 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.04 0.01 19 52 486 132 15 3 0
data-in/Linux_hwnode3_200411170720 0100644 0001755 0000024 00000000224 10146650005 014760 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
2.71 1.37 0.93 73 17 804 95 27 3 0
data-in/Linux_hwnode2_200411170720 0100644 0001755 0000024 00000000225 10146650003 014756 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170720 0100644 0001755 0000024 00000000000 10146650000 014167 0 ustar djh staff data-in/FreeBSD_r4p_200411170720 0100644 0001755 0000024 00000000610 10146650003 014226 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 250 23834624 162119680 229388288 1551978496 138477568 1975381853 1664700711
data-in/FreeBSD_psa4_200411170720 0100644 0001755 0000024 00000000535 10146650003 014376 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811906560 137236480 104198144 45060096 32768 104529769 122955672
data-in/FreeBSD_psa3_200411170720 0100644 0001755 0000024 00000000623 10146650004 014374 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.25 0.21 0.21 21 2 10 24 2 119 32 7 1 2814 8339 2032 25 4455 985837568 320471040 652066816 117669888 22388736 1538031430 1341505923
data-in/FreeBSD_psa2_200411170720 0100644 0001755 0000024 00000000622 10146650004 014372 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.13 0.19 13 0 1 34 0 133 73 7 1 1355 1721 5069 0 307 984346624 276287488 313163776 510083072 22568960 2117756213 1134789237
data-in/FreeBSD_pinky_200411170720 0100644 0001755 0000024 00000000570 10146650005 014662 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.04 0.52 0.63 71 13 31 52 75 309 10 14 19 0 0 16543744 170876928 751775744 56320000 47886336 1086299240 3859080822 11 0
data-in/Linux_staging_200411170725 0100644 0001755 0000024 00000000166 10146650460 015064 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170725 0100644 0001755 0000024 00000000113 10146650460 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.07 0.02 4 26 231
data-in/Linux_r1z_200411170725 0100644 0001755 0000024 00000000311 10146650461 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.01 0.03 0.00 84 34 23 173 70 3 653 465 15 831
data-in/Linux_r1q_200411170725 0100644 0001755 0000024 00000000272 10146650462 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.31 2.56 2.65 89 77 42 126 21 1049 701 12 2107
data-in/Linux_r1m2_200411170725 0100644 0001755 0000024 00000000315 10146650461 014206 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.06 0.07 86 81 34 135 20 3 4072 2796 105 2615
data-in/Linux_r1m1_200411170725 0100644 0001755 0000024 00000000313 10146650461 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.08 0.14 0.09 69 73 29 175 51 3 1630 801 45 4809
data-in/Linux_r1f_200411170725 0100644 0001755 0000024 00000000274 10146650466 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.82 1.55 1.44 87 86 46 201 20 9992 14980 15 9048
data-in/Linux_r1a1_200411170725 0100644 0001755 0000024 00000000271 10146650460 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.36 0.42 0.34 83 35 14 160 59 885 597 53 3255
data-in/Linux_r1a_200411170725 0100644 0001755 0000024 00000000316 10146650462 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.21 1.37 1.34 91 33 27 183 20 23 5771 4808 102 7870
data-in/Linux_streamguys1_200411170725 0100644 0001755 0000024 00000000223 10146650461 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.44 0.64 0.80 49 60 612 45 8 3 0
data-in/Linux_steve_200411170725 0100644 0001755 0000024 00000000113 10146650462 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170725 0100644 0001755 0000024 00000000224 10146650461 014526 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.35 0.33 0.28 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170725 0100644 0001755 0000024 00000000225 10146650461 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.11 0.03 0.01 19 52 485 132 15 3 0
data-in/Linux_hwnode3_200411170725 0100644 0001755 0000024 00000000224 10146650461 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.89 1.51 1.15 73 17 798 95 27 3 0
data-in/Linux_hwnode2_200411170725 0100644 0001755 0000024 00000000225 10146650461 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.09 0.03 0.01 81 15 765 224 23 4 0
data-in/FreeBSD_mb2_200411170725 0100644 0001755 0000024 00000000000 10146650455 014212 0 ustar djh staff data-in/FreeBSD_r4p_200411170725 0100644 0001755 0000024 00000000610 10146650460 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.01 0.01 0.00 9 0 0 2 0 72 7 8 1 6 0 333 1 252 23769088 162119680 229453824 1551978496 138477568 1975717501 1668222234
data-in/Linux_mb_200411170725 0100644 0001755 0000024 00000000155 10146650461 014025 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/FreeBSD_psa4_200411170725 0100644 0001755 0000024 00000000535 10146650460 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137236480 104202240 45060096 32768 104557594 122970504
data-in/FreeBSD_psa3_200411170725 0100644 0001755 0000024 00000000623 10146650460 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.83 0.38 0.28 21 2 10 24 2 125 32 7 1 2892 8437 2064 25 4617 968790016 325398528 653455360 127750144 23040000 1541213809 1355024019
data-in/FreeBSD_psa2_200411170725 0100644 0001755 0000024 00000000622 10146650460 014405 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.12 0.16 13 0 1 34 0 142 78 7 1 1394 1760 5234 0 319 976052224 275492864 318455808 515780608 20668416 2128102312 1228429056
data-in/FreeBSD_pinky_200411170725 0100644 0001755 0000024 00000000567 10146650460 014702 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.37 0.52 0.62 71 13 31 52 75 303 10 14 19 0 0 8818688 172765184 754073600 75759616 31985664 1091756942 3864421497 11 0
data-in/Linux_mb_200411170730 0100644 0001755 0000024 00000000155 10146651135 014020 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170730 0100644 0001755 0000024 00000000166 10146651135 015060 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170730 0100644 0001755 0000024 00000000113 10146651135 014260 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.03 0.03 0.00 4 26 231
data-in/Linux_r1z_200411170730 0100644 0001755 0000024 00000000311 10146651137 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.22 0.13 0.04 84 34 23 165 58 3 674 472 15 862
data-in/Linux_r1q_200411170730 0100644 0001755 0000024 00000000272 10146651135 014125 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.64 2.52 2.59 89 78 42 133 25 1103 717 12 2195
data-in/Linux_r1m2_200411170730 0100644 0001755 0000024 00000000315 10146651136 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.30 0.10 0.08 86 81 34 137 20 3 4114 2842 107 2666
data-in/Linux_r1m1_200411170730 0100644 0001755 0000024 00000000313 10146651136 014177 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.11 0.12 0.09 69 73 29 179 51 3 1657 812 49 4889
data-in/Linux_r1f_200411170730 0100644 0001755 0000024 00000000275 10146651142 014113 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.29 1.45 1.43 87 86 46 199 20 10022 15048 15 9063
data-in/Linux_r1a1_200411170730 0100644 0001755 0000024 00000000271 10146651135 014165 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.35 0.44 0.37 83 35 14 148 45 914 604 55 3363
data-in/Linux_r1a_200411170730 0100644 0001755 0000024 00000000316 10146651140 014100 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.14 1.25 1.29 91 33 27 184 20 23 5784 4828 103 7891
data-in/Linux_streamguys1_200411170730 0100644 0001755 0000024 00000000223 10146651137 015704 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.06 1.37 1.09 49 60 612 45 8 3 0
data-in/Linux_steve_200411170730 0100644 0001755 0000024 00000000113 10146651137 014544 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170730 0100644 0001755 0000024 00000000224 10146651137 014523 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.25 0.31 0.27 78 47 144 38 1 12 0
data-in/Linux_hwnode5_200411170730 0100644 0001755 0000024 00000000225 10146651135 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.06 0.04 0.00 19 52 492 132 15 3 0
data-in/Linux_hwnode3_200411170730 0100644 0001755 0000024 00000000224 10146651135 014766 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.83 1.82 1.37 73 17 821 95 27 3 0
data-in/Linux_hwnode2_200411170730 0100644 0001755 0000024 00000000225 10146651133 014764 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.05 0.03 0.00 81 15 763 224 23 4 0
data-in/FreeBSD_mb2_200411170730 0100644 0001755 0000024 00000000000 10146651131 014176 0 ustar djh staff data-in/FreeBSD_r4p_200411170730 0100644 0001755 0000024 00000000611 10146651134 014236 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 333 1 254 20582400 162299904 232460288 1551978496 138477568 1976041231 1671222862
data-in/FreeBSD_psa4_200411170730 0100644 0001755 0000024 00000000535 10146651135 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137236480 104206336 45060096 32768 104563219 122977270
data-in/FreeBSD_psa3_200411170730 0100644 0001755 0000024 00000000623 10146651135 014403 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.24 0.26 0.25 21 2 10 24 2 137 39 7 1 2952 8555 2084 25 4790 945217536 329064448 668737536 132014080 23400448 1544751062 1369654847
data-in/FreeBSD_psa2_200411170730 0100644 0001755 0000024 00000000622 10146651134 014400 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.09 0.10 0.13 13 0 1 34 0 150 76 7 1 1442 1812 5487 0 335 970297344 274558976 320565248 520175616 20852736 2140148755 1337851617
data-in/FreeBSD_pinky_200411170730 0100644 0001755 0000024 00000000570 10146651136 014671 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.22 0.43 0.57 71 13 31 52 75 316 10 14 19 0 0 10752000 169844736 760774656 63729664 40681472 1097391805 3869887616 11 0
data-in/Linux_staging_200411170735 0100644 0001755 0000024 00000000166 10146651607 015071 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170735 0100644 0001755 0000024 00000000113 10146651606 014270 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.24 0.06 0.02 4 26 229
data-in/Linux_r1z_200411170735 0100644 0001755 0000024 00000000311 10146651611 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.11 0.04 84 34 23 133 30 3 703 489 15 890
data-in/Linux_r1q_200411170735 0100644 0001755 0000024 00000000272 10146651610 014130 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.81 2.90 2.75 89 78 42 122 20 1123 735 12 2262
data-in/Linux_r1m2_200411170735 0100644 0001755 0000024 00000000315 10146651607 014212 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.09 0.08 86 81 34 131 20 3 4145 2866 110 2713
data-in/Linux_r1m1_200411170735 0100644 0001755 0000024 00000000313 10146651611 014202 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.54 0.23 0.13 69 73 29 178 51 3 1675 818 53 4971
data-in/Linux_r1f_200411170735 0100644 0001755 0000024 00000000275 10146651616 014126 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.47 1.51 1.45 87 86 46 206 20 10060 15112 15 9081
data-in/Linux_r1a1_200411170735 0100644 0001755 0000024 00000000271 10146651607 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.41 0.40 0.37 83 35 14 155 47 943 615 55 3480
data-in/Linux_r1a_200411170735 0100644 0001755 0000024 00000000316 10146651613 014112 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.05 1.58 1.39 91 33 27 193 20 23 5801 4846 104 7918
data-in/Linux_streamguys1_200411170735 0100644 0001755 0000024 00000000223 10146651612 015707 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.50 0.84 0.93 49 60 612 45 8 3 0
data-in/Linux_steve_200411170735 0100644 0001755 0000024 00000000113 10146651611 014546 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.02 0.00 73 63 2376
data-in/Linux_mnode_200411170735 0100644 0001755 0000024 00000000224 10146651610 014524 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.12 0.24 0.25 78 47 134 38 1 12 0
data-in/Linux_hwnode5_200411170735 0100644 0001755 0000024 00000000225 10146651610 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.01 0.00 19 52 493 131 15 3 0
data-in/Linux_hwnode3_200411170735 0100644 0001755 0000024 00000000224 10146651611 014772 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.52 2.12 1.66 73 17 805 95 27 3 0
data-in/Linux_hwnode2_200411170735 0100644 0001755 0000024 00000000225 10146651610 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.03 0.04 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170735 0100644 0001755 0000024 00000000000 10146651604 014210 0 ustar djh staff data-in/FreeBSD_r4p_200411170735 0100644 0001755 0000024 00000000611 10146651610 014242 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 256 23916544 162377728 229048320 1551978496 138477568 1976347612 1673479631
data-in/FreeBSD_psa4_200411170735 0100644 0001755 0000024 00000000535 10146651610 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811902464 137236480 104202240 45060096 32768 104619912 122992242
data-in/FreeBSD_psa3_200411170735 0100644 0001755 0000024 00000000623 10146651610 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.24 0.25 0.24 21 2 10 24 2 130 42 7 1 3000 8689 2096 25 4965 919613440 329617408 684523520 137986048 26693632 1547946474 1385958290
data-in/FreeBSD_psa2_200411170735 0100644 0001755 0000024 00000000622 10146651610 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.59 0.61 0.37 13 0 1 34 0 134 73 7 1 1498 1867 5746 0 352 974950400 275148800 313200640 522055680 21094400 2150869094 1434415657
data-in/FreeBSD_pinky_200411170735 0100644 0001755 0000024 00000000570 10146651610 014673 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.07 0.45 0.58 71 13 31 52 75 306 10 14 19 0 0 17059840 170389504 752435200 76935168 26583040 1102778722 3875165030 11 0
data-in/Linux_mb_200411170735 0100644 0001755 0000024 00000000155 10146651606 014030 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.07 0.02 0.00 13 16 88 15 1
data-in/Linux_mb_200411170740 0100644 0001755 0000024 00000000155 10146652262 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 72 15 1
data-in/Linux_staging_200411170740 0100644 0001755 0000024 00000000166 10146652262 015063 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170740 0100644 0001755 0000024 00000000113 10146652265 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 231
data-in/Linux_r1z_200411170740 0100644 0001755 0000024 00000000311 10146652266 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.12 0.17 0.09 84 34 23 137 30 3 741 492 15 920
data-in/Linux_r1q_200411170740 0100644 0001755 0000024 00000000272 10146652266 014134 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.91 2.76 2.70 89 78 42 131 23 1147 750 13 2348
data-in/Linux_r1m2_200411170740 0100644 0001755 0000024 00000000315 10146652265 014207 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.15 0.08 0.08 86 81 34 137 24 3 4191 2932 111 2762
data-in/Linux_r1m1_200411170740 0100644 0001755 0000024 00000000313 10146652266 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.13 0.11 69 73 29 178 51 3 1721 831 59 5046
data-in/Linux_r1f_200411170740 0100644 0001755 0000024 00000000275 10146652271 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.43 1.50 1.45 87 86 46 211 20 10095 15185 15 9095
data-in/Linux_r1a1_200411170740 0100644 0001755 0000024 00000000271 10146652263 014171 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.33 0.40 0.38 83 35 14 144 39 957 624 57 3598
data-in/Linux_r1a_200411170740 0100644 0001755 0000024 00000000316 10146652270 014106 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.15 1.34 1.34 91 33 27 187 20 23 5816 4852 104 7939
data-in/Linux_streamguys1_200411170740 0100644 0001755 0000024 00000000223 10146652266 015711 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.72 0.75 0.84 49 60 612 45 8 3 0
data-in/Linux_steve_200411170740 0100644 0001755 0000024 00000000113 10146652265 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.06 0.03 0.00 73 63 2376
data-in/Linux_mnode_200411170740 0100644 0001755 0000024 00000000224 10146652265 014527 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.19 0.26 0.26 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170740 0100644 0001755 0000024 00000000225 10146652264 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170740 0100644 0001755 0000024 00000000224 10146652265 014774 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.52 1.25 1.43 73 17 799 98 27 3 0
data-in/Linux_hwnode2_200411170740 0100644 0001755 0000024 00000000225 10146652266 014775 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.10 0.08 0.02 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170740 0100644 0001755 0000024 00000000000 10146652261 014204 0 ustar djh staff data-in/FreeBSD_r4p_200411170740 0100644 0001755 0000024 00000000611 10146652264 014244 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 258 24145920 162181120 229015552 1551978496 138477568 1976659361 1676811436
data-in/FreeBSD_psa4_200411170740 0100644 0001755 0000024 00000000535 10146652264 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104625309 122999048
data-in/FreeBSD_psa3_200411170740 0100644 0001755 0000024 00000000623 10146652265 014411 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.34 0.26 0.24 21 2 10 24 2 141 42 7 1 3058 8851 2116 25 5136 881897472 331407360 709681152 148017152 27430912 1552941983 1411610150
data-in/FreeBSD_psa2_200411170740 0100644 0001755 0000024 00000000622 10146652264 014406 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.26 0.27 13 0 1 34 0 142 73 7 1 1532 1930 5874 0 369 973234176 286076928 311930880 513978368 21229568 2161602508 1538383343
data-in/FreeBSD_pinky_200411170740 0100644 0001755 0000024 00000000570 10146652265 014676 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.06 0.34 0.51 71 13 31 52 75 312 10 14 19 0 0 13828096 170741760 753901568 56320000 48611328 1108363356 3880376707 11 0
data-in/Linux_staging_200411170745 0100644 0001755 0000024 00000000166 10146652740 015071 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.01 0.01 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170745 0100644 0001755 0000024 00000000113 10146652740 014271 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.22 0.07 0.02 4 26 234
data-in/Linux_r1z_200411170745 0100644 0001755 0000024 00000000311 10146652743 014144 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.25 0.17 0.10 84 34 23 152 35 3 765 497 15 951
data-in/Linux_r1q_200411170745 0100644 0001755 0000024 00000000272 10146652743 014141 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.37 2.43 2.56 89 78 42 132 21 1185 775 13 2425
data-in/Linux_r1m2_200411170745 0100644 0001755 0000024 00000000315 10146652741 014213 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.10 0.09 0.08 86 81 34 141 22 3 4235 2969 112 2808
data-in/Linux_r1m1_200411170745 0100644 0001755 0000024 00000000313 10146652741 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.64 0.26 0.14 69 73 29 176 51 3 1776 850 63 5121
data-in/Linux_r1f_200411170745 0100644 0001755 0000024 00000000275 10146652747 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.44 1.45 1.44 87 86 46 204 20 10123 15243 15 9115
data-in/Linux_r1a1_200411170745 0100644 0001755 0000024 00000000271 10146652743 014201 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.60 0.41 0.37 83 35 14 156 46 982 647 59 3715
data-in/Linux_r1a_200411170745 0100644 0001755 0000024 00000000316 10146652744 014121 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.47 1.39 1.36 91 33 27 187 20 23 5829 4870 104 7964
data-in/Linux_streamguys1_200411170745 0100644 0001755 0000024 00000000223 10146652741 015714 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.66 1.19 0.95 49 60 612 45 8 3 0
data-in/Linux_steve_200411170745 0100644 0001755 0000024 00000000113 10146652741 014554 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2376
data-in/Linux_mnode_200411170745 0100644 0001755 0000024 00000000224 10146652742 014534 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.64 0.40 0.30 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170745 0100644 0001755 0000024 00000000225 10146652741 015003 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170745 0100644 0001755 0000024 00000000224 10146652741 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.36 0.65 1.11 73 17 804 96 27 3 0
data-in/FreeBSD_mb2_200411170745 0100644 0001755 0000024 00000000000 10146652735 014217 0 ustar djh staff data-in/FreeBSD_psa4_200411170745 0100644 0001755 0000024 00000000535 10146652741 014420 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.06 0.01 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104640708 123006620
data-in/FreeBSD_psa2_200411170745 0100644 0001755 0000024 00000000622 10146652741 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.04 0.13 0.20 13 0 1 34 0 135 76 7 1 1569 1996 6043 0 388 970072064 288083968 312680448 514326528 21286912 2170983299 1606385693
data-in/FreeBSD_pinky_200411170745 0100644 0001755 0000024 00000000570 10146652741 014702 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.20 0.40 0.50 71 13 31 52 75 312 10 14 19 0 0 14524416 171479040 751853568 71188480 34357248 1113526607 3885787462 11 0
data-in/Linux_mb_200411170745 0100644 0001755 0000024 00000000155 10146652740 014031 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.08 0.03 0.01 13 16 80 15 1
data-in/Linux_hwnode2_200411170745 0100644 0001755 0000024 00000000225 10146652741 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.04 0.00 81 15 768 224 23 4 0
data-in/FreeBSD_r4p_200411170745 0100644 0001755 0000024 00000000611 10146652741 014251 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 260 22745088 162275328 230334464 1551966208 138477568 1977041213 1680749761
data-in/FreeBSD_psa3_200411170745 0100644 0001755 0000024 00000000623 10146652740 014414 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.36 0.30 0.25 21 2 10 24 2 131 36 9 1 3136 8985 2132 30 5320 900296704 328683520 670228480 169472000 29753344 1561270420 1425319769
data-in/Linux_mb_200411170750 0100644 0001755 0000024 00000000155 10146653413 014023 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 78 15 1
data-in/Linux_staging_200411170750 0100644 0001755 0000024 00000000166 10146653412 015062 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 109 28 0
data-in/Linux_psa1_200411170750 0100644 0001755 0000024 00000000113 10146653414 014264 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.02 0.00 4 26 223
data-in/Linux_r1z_200411170750 0100644 0001755 0000024 00000000311 10146653415 014135 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.00 0.05 0.07 84 34 23 153 51 3 791 505 15 979
data-in/Linux_r1q_200411170750 0100644 0001755 0000024 00000000272 10146653415 014132 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
3.11 2.98 2.76 89 78 42 130 24 1229 791 13 2506
data-in/Linux_r1m2_200411170750 0100644 0001755 0000024 00000000315 10146653414 014205 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.02 0.09 0.08 86 81 34 130 21 3 4290 3012 114 2859
data-in/Linux_r1m1_200411170750 0100644 0001755 0000024 00000000313 10146653415 014203 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.09 0.15 0.12 69 73 29 172 51 3 1811 858 67 5185
data-in/Linux_r1f_200411170750 0100644 0001755 0000024 00000000275 10146653422 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.75 1.51 1.46 87 86 46 208 20 10155 15282 15 9137
data-in/Linux_r1a1_200411170750 0100644 0001755 0000024 00000000272 10146653415 014173 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.50 0.49 0.41 83 35 14 140 37 1011 651 59 3833
data-in/Linux_r1a_200411170750 0100644 0001755 0000024 00000000316 10146653422 014107 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.12 1.59 1.43 91 33 27 186 20 23 5858 4887 105 7986
data-in/Linux_streamguys1_200411170750 0100644 0001755 0000024 00000000223 10146653416 015710 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.63 0.80 0.82 49 60 621 45 8 3 0
data-in/Linux_steve_200411170750 0100644 0001755 0000024 00000000113 10146653416 014550 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.01 0.02 0.00 73 63 2376
data-in/Linux_mnode_200411170750 0100644 0001755 0000024 00000000224 10146653414 014525 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.22 0.34 0.29 78 47 139 38 1 12 0
data-in/Linux_hwnode5_200411170750 0100644 0001755 0000024 00000000225 10146653415 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.08 0.03 0.00 19 52 491 132 15 3 0
data-in/Linux_hwnode3_200411170750 0100644 0001755 0000024 00000000224 10146653413 014771 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.48 0.61 0.97 73 17 804 98 27 3 0
data-in/Linux_hwnode2_200411170750 0100644 0001755 0000024 00000000225 10146653415 014773 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 81 15 769 224 23 4 0
data-in/FreeBSD_mb2_200411170750 0100644 0001755 0000024 00000000000 10146653410 014202 0 ustar djh staff data-in/FreeBSD_r4p_200411170750 0100644 0001755 0000024 00000000611 10146653414 014243 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 262 22159360 162312192 230912000 1551937536 138477568 1977319061 1684369401
data-in/FreeBSD_psa4_200411170750 0100644 0001755 0000024 00000000535 10146653414 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104646881 123013746
data-in/FreeBSD_psa2_200411170750 0100644 0001755 0000024 00000000622 10146653413 014404 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
1.61 0.79 0.43 13 0 1 34 0 147 84 7 1 1589 2064 6155 0 406 965521408 290029568 312418304 516550656 21929984 2182003471 1726150417
data-in/FreeBSD_pinky_200411170750 0100644 0001755 0000024 00000000570 10146653414 014674 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.12 0.33 0.46 71 13 31 52 75 315 10 14 19 0 0 13524992 171155456 752529408 73879552 32313344 1118965817 3891226172 11 0
data-in/FreeBSD_psa3_200411170750 0100644 0001755 0000024 00000000623 10146653414 014407 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.49 0.36 0.28 21 2 10 24 2 129 37 9 1 3194 9151 2144 31 5503 859676672 329469952 689881088 191045632 28360704 1574190443 1439481955
data-in/Linux_staging_200411170755 0100644 0001755 0000024 00000000166 10146654067 015076 0 ustar djh staff load1 load5 load15 disk-/ disk-/drive2 numproc-total sendmail-success sendmail-deferral
0.00 0.00 0.00 8 100 110 28 0
data-in/Linux_psa1_200411170755 0100644 0001755 0000024 00000000113 10146654067 014276 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.00 0.00 0.00 4 26 216
data-in/Linux_r1z_200411170755 0100644 0001755 0000024 00000000312 10146654072 014143 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.05 0.06 84 34 23 188 83 3 802 511 15 1012
data-in/Linux_r1q_200411170755 0100644 0001755 0000024 00000000272 10146654072 014137 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
2.34 2.56 2.63 89 78 42 127 23 1268 805 14 2603
data-in/Linux_r1m1_200411170755 0100644 0001755 0000024 00000000313 10146654072 014210 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.04 0.10 0.09 69 73 29 173 51 3 1839 876 71 5263
data-in/Linux_r1f_200411170755 0100644 0001755 0000024 00000000275 10146654076 014133 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.59 1.67 1.54 87 86 46 204 20 10201 15344 15 9158
data-in/Linux_r1a1_200411170755 0100644 0001755 0000024 00000000272 10146654070 014176 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.54 0.57 0.46 83 35 14 141 39 1055 670 61 3958
data-in/Linux_r1a_200411170755 0100644 0001755 0000024 00000000316 10146654074 014120 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
1.33 1.43 1.40 91 33 27 184 20 23 5885 4902 105 8009
data-in/Linux_steve_200411170755 0100644 0001755 0000024 00000000113 10146654071 014553 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total
0.00 0.00 0.00 73 63 2377
data-in/Linux_streamguys1_200411170755 0100644 0001755 0000024 00000000223 10146654073 015715 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
1.19 0.88 0.81 49 60 622 45 8 3 0
data-in/Linux_mnode_200411170755 0100644 0001755 0000024 00000000224 10146654071 014532 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.32 0.33 0.29 78 47 138 38 1 12 0
data-in/Linux_hwnode5_200411170755 0100644 0001755 0000024 00000000225 10146654071 015002 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.02 0.00 19 52 490 132 15 3 0
data-in/Linux_hwnode3_200411170755 0100644 0001755 0000024 00000000225 10146654071 015000 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.89 0.73 0.90 73 17 805 101 27 3 0
data-in/FreeBSD_mb2_200411170755 0100644 0001755 0000024 00000000000 10146654065 014216 0 ustar djh staff data-in/FreeBSD_r4p_200411170755 0100644 0001755 0000024 00000000611 10146654070 014247 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.00 0.00 0.00 9 0 0 2 0 75 10 8 1 6 0 339 1 264 22056960 162320384 231006208 1551937536 138477568 1977544803 1686158878
data-in/FreeBSD_psa4_200411170755 0100644 0001755 0000024 00000000535 10146654070 014416 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.00 0.00 0.00 14 0 0 2 0 75 7 7 1 0 0 0 1811898368 137240576 104202240 45060096 32768 104653362 123021314
data-in/FreeBSD_psa3_200411170755 0100644 0001755 0000024 00000000623 10146654070 014413 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache em0-Ibytes em0-Obytes
0.07 0.17 0.21 21 2 10 24 2 132 41 9 1 3284 9283 2178 32 5679 848072704 311656448 691011584 219693056 28000256 1580251228 1453790025
data-in/FreeBSD_psa2_200411170755 0100644 0001755 0000024 00000000622 10146654071 014412 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-httpsd numproc-mysqld qmail-success qmail-deferral qmail-failure connect-imapd connect-pop3d mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes
0.21 0.49 0.40 13 0 1 34 0 148 86 7 1 1619 2115 6215 0 422 962822144 290762752 311996416 518086656 22781952 2192324627 1848272036
data-in/FreeBSD_pinky_200411170755 0100644 0001755 0000024 00000000570 10146654071 014701 0 ustar djh staff load1 load5 load15 disk-/ disk-/home disk-/tmp disk-/usr disk-/var numproc-total numproc-httpd numproc-mysqld qmail-success qmail-deferral qmail-failure mem_free mem_wire mem_active mem_inactive mem_cache fxp0-Ibytes fxp0-Obytes tun0*-Ibytes tun0*-Obytes
0.19 0.46 0.52 71 13 31 52 75 306 10 14 19 0 0 15544320 171462656 751312896 75362304 29720576 1124329817 3896650665 11 0
data-in/Linux_mb_200411170755 0100644 0001755 0000024 00000000155 10146654067 014036 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 75 15 1
data-in/Linux_hwnode2_200411170755 0100644 0001755 0000024 00000000225 10146654070 014776 0 ustar djh staff load1 load5 load15 disk-/ disk-/vz numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral
0.00 0.00 0.00 81 15 765 225 23 4 0
data-in/Linux_r1m2_200411170755 0100644 0001755 0000024 00000000315 10146654071 014212 0 ustar djh staff load1 load5 load15 disk-/ disk-/var disk-/home numproc-total numproc-httpd numproc-mysqld sendmail-success sendmail-deferral connect-imapd connect-pop3d
0.03 0.07 0.08 86 81 34 129 20 3 4339 3065 114 2912
data-in/Linux_mb_200411170800 0100644 0001755 0000024 00000000155 10146654545 014026 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total numproc-httpd numproc-mysqld
0.00 0.00 0.00 13 16 79 15 1
data-in/Linux_psa1_200411170800 0100644 0001755 0000024 00000000113 10146654545 014266 0 ustar djh staff load1 load5 load15 disk-/ disk-/boot numproc-total
0.33 0.07 0.02 4 26 214