Operating System - HP-UX
1833832 Members
2123 Online
110063 Solutions
New Discussion

Collecting System information

 
SOLVED
Go to solution
KRS_1
Frequent Advisor

Collecting System information

Hi guys,

Can anybody explain how we can collect system information like memory, disks, model(class), processors etc.

Thanks in advance
Rajesh
15 REPLIES 15
Patrick Wallek
Honored Contributor

Re: Collecting System information

The main two that I use are:

CFG2HTML
http://come.to/cfg2html

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

You can also get some information from print_manifest which is included with Ignite.
Joseph Loo
Honored Contributor

Re: Collecting System information

hi,

do u have ignite-ux install in the machine? if so, u may use print_manifest command.

regards.
what you do not see does not mean you should not believe
Nguyen Anh Tien
Honored Contributor

Re: Collecting System information

issue these commands
model
dmesg|grep 'physical'
ioscan -fnC disk

to check processor, hmm I dont know how.
tienna
HP is simple
Muthukumar_5
Honored Contributor

Re: Collecting System information

You can use sam -> performance monitor -> system properties

or

print_manifest (If iginite-ux is installed)

On 11.23 machine,

use machinfo to get machine information.

hth.

Easy to suggest when don't know about the problem!
Suraj Singh_1
Trusted Contributor
Solution

Re: Collecting System information

1. 'print_manifest' if you have ignite package installed.

2. issue these commands
i) model ; To get Model
ii) dmesg|grep 'physical' ; Amount of Physical memory installed
iii) ioscan -fnC disk ; No. of Disks
iv) ioscan -fnC processor ; To get No. of Processor installed

3. Use the nickel script as suggested above.

Regards
What we cannot speak about we must pass over in silence.
Muthukumar_5
Honored Contributor

Re: Collecting System information

Read this thread.It will be more helpful.

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

hth.
Easy to suggest when don't know about the problem!
Devesh Pant_1
Esteemed Contributor

Re: Collecting System information

KRS,
sysinfo is a very nice cyctem information collection tool that i have been using

ftp://ftp.hp.com/pub/catia/Utils/SysInfo

thanks
Devesh
Cem Tugrul
Esteemed Contributor

Re: Collecting System information

KRS,
if you fave installed ignite then
print_manifest would be nice to get
information about your system
so you can easily get system info whenever you want ...
Also again Assuming you have ignite when
you take the sysbck with make_tape_recovery
then it automatically produced the file
manifest in
/var/opt/ignite/recovery/date_time_of_make_tape_recovery/manifest

Good Luck,
Our greatest duty in this life is to help others. And please, if you can't
Ganesha Sridhara
Honored Contributor

Re: Collecting System information

Hello,

Please check this link.
We have used nickel to generate the system detail on HP-UX.
http://www.hp.com/workstations/segments/mcad/dassault/plmcc/perf_tools.html

Regards,
Ganesha Sridhar

MarkSyder
Honored Contributor

Re: Collecting System information

Model is simple - type model.

Everything else you can find in sam:

sam -> performance monitors -> system properties.

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
Devender Khatana
Honored Contributor

Re: Collecting System information

Hi Rajesh,

print_manifest will give you most of that but as everybody posted, it do not require ignite to be there in the system. In OS revesion later than perhaps June 2004. It is part of standard OS. Allthough it still resides in /opt/ignite/bin directory.

Also it is included in Support Pack June 2004.

HTH,
Devender
Impossible itself mentions "I m possible"
Geoff Wild
Honored Contributor

Re: Collecting System information

From ignite:

/opt/ignite/bin/print_manifest

I also use cfg2html and sysinfo (attached)

from cron
# Run the sysinfo script
0 6 1 * * /usr/local/sysinfo/sysinfo -a -b -o /usr/tmp/`hostname`.sysinfo >/tmp/sysinfo.cron 2>&1

Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Piyush Verma_1
Advisor

Re: Collecting System information

hey rajesh,

you have got enough ways to know the system information now... but the easiest is ...
Go to SAM--> Performance Monitors--> System Properties. Processor, Memory, OS, network info is given there..

the disks info can be seen in SAM--> Performance Monitors-->Disks.

Thanks
Piyush
D Block 2
Respected Contributor

Re: Collecting System information

Rajesh- I'm a bit surprised that no one suggested the old xstm or stm. there is nothing better to look at the memory dimm layout other than xstm. if you need to increase memory, how many empty slots do you really have ?

Golf is a Good Walk Spoiled, Mark Twain.
KRS_1
Frequent Advisor

Re: Collecting System information

Thank you for your valuble time