1753711 Members
4460 Online
108799 Solutions
New Discussion юеВ

System Details

 
SOLVED
Go to solution
bhagirathp
Occasional Advisor

System Details

Hi,

I want to know the System hardware details of my HP servers like Processor speed,NIC Card manufacture etc,plz let me know if they are any commands or logs where i can get these details.
12 REPLIES 12
Pete Randall
Outstanding Contributor

Re: System Details

If you have Ignite installed, you can use the print_manifest command.

You can also use SAM to display system properties (Sam -> Performance
Monitors -> System Properties).

There are also utilities like "cfg2html" ( http://come.to/cfg2html ),
"nickel" ( ftp://ftp.hp.com/pub/catia/Utils/nickel.shar ) and "sysinfo"
( http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/ ).

Finally, you can also obtain this information from the command line with a
series of little scripts like these:

CPU

HPUX=/stand/vmunix

MODEL=$(grep -i $(model | tr "/" " " \
| awk '{print $NF}') \
/usr/sam/lib/mo/sched.models \
| awk '{print $NF}')

MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo `hostname` has `ioscan -k |grep -n processor \
|wc -l` $MODEL $MHZ "Mhz processor(s)"


Number of CPUs

ioscan -k |grep -n processor |wc -l




RAM

HPUX=/stand/vmunix
MAJORREV=$(uname -r | cut -f2 -d .)
if [ $MAJORREV -ge "11.0" ]
then
MYSYMBOL="phys_mem_pages"
else
MYSYMBOL="physmem"
fi

MYMEM=$(echo "${MYSYMBOL}/D" \
| adb $HPUX /dev/kmem \
| grep "${MYSYMBOL}: *." \
| awk '{printf "%.0f MB\n",$2/256}')
echo $MYMEM



And, even more finally, you can obtain CPU speed and RAM without CSTM or root ac
cess as described by Nancy Rippey here:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=851889


Pete

Pete
Arunvijai_4
Honored Contributor

Re: System Details

Hello,

Several ways to do this,

# /opt/ignite/bin/print_manifest

# Install sysinfo from,

http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sysinfo-3.3.1/

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Muthukumar_5
Honored Contributor
Solution

Re: System Details

Use as,

sam -> performance monitor -> system properties

Use sam -> network interfaces will give NIC informations.

--
Muthu
Easy to suggest when don't know about the problem!
Muthukumar_5
Honored Contributor

Re: System Details

Use this:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=213894

--
Muthu
Easy to suggest when don't know about the problem!
Arunvijai_4
Honored Contributor

Re: System Details

Also, CFG2HTML
http://come.to/cfg2html

Nickel
http://unixguide.net/cgi-bin/htsearch?words=nickel


-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Ajitkumar Rane
Trusted Contributor

Re: System Details

Bhagirathp,

SAM-> Performance monitors -> System properties, probably should give you the information you require.


Rgds,

Ajit
Amidsts difficulties lie opportunities
Arunvijai_4
Honored Contributor

Re: System Details

renarios
Trusted Contributor

Re: System Details

For the System Information execute as root: /opt/ignite/bin/print_manifest

Cheerio,

Renarios
Nothing is more successfull as failure
Bharat Katkar
Honored Contributor

Re: System Details

Hi,
You can use CSTM for the same.
In addition to hardware datils it will also show the health of the system.

FInd attached quick reference guide for using CSTM.

Hope that helps.
Regards,

You need to know a lot to actually know how little you know