|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/task/21573/root/usr/share/logwatch/scripts/services/ |
Upload File : |
##########################################################################
# $Id: zz-sys,v 1.1 2006/02/19 23:12:50 bjorn Exp $
##########################################################################
# $Log: zz-sys,v $
# Revision 1.1 2006/02/19 23:12:50 bjorn
# Get configuration info from system, based on script by Laurent Dufour.
#
##########################################################################
# This script prints out information about the CPU(s) and physical memory.
# It obtains the information from the Sys::CPU and Sys::MemInfo perl modules,
# so these must be installed.
# Note that the number of CPUs is not the number of physical CPU chips;
# CPUs with Hyperthreading or multiple cores affect the number of CPUs
# displayed.
eval "require Sys::CPU";
if ($@) {
print STDERR "No Sys::CPU module installed. To install, execute the command:\n";
print STDERR " perl -MCPAN -e 'install Sys::CPU' \n\n";
} else {
import Sys::CPU;
print " CPU: " . Sys::CPU::cpu_count() . " " . Sys::CPU::cpu_type() . " at " . Sys::CPU::cpu_clock() . "MHz\n";
}
eval "require Sys::MemInfo";
if ($@) {
print STDERR "No Sys::MemInfo module installed. To install, execute the command:\n";
print STDERR " perl -MCPAN -e 'install Sys::MemInfo' \n\n";
} else {
import Sys::MemInfo qw(totalmem);
print " Memory: " . ((&totalmem - (&totalmem % (1024*1024))) / (1024*1024)) . " MB\n";
}
use POSIX qw(uname);
my ($OSname, $hostname, $release, $version, $machine) = POSIX::uname();
print " Machine: $machine\n";
my $OStitle;
$OStitle = $OSname;
$OStitle = "Solaris" if ($OSname eq "SunOS" && $release >= 2);
print " Release: $OStitle $release\n";