Operating System - HP-UX
1754368 Members
4485 Online
108813 Solutions
New Discussion

HOW CAN I GET MY HP-UX SYSTEM INFO?

 
SOLVED
Go to solution
CA1450370
Occasional Contributor

HOW CAN I GET MY HP-UX SYSTEM INFO?

Hello

I have a old HP-UX machine , I think it´s HP 9000 Series but i would like to know exact hardware and software information
9 REPLIES 9
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Execute "model", "uname -a", and "swlist".
NOTE: This will not tell you anything about software installed in non-standard ways.
If it ain't broke, I can fix that.
Rita C Workman
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Also might check and see if there is:

/var/opt/ignite/local/manifest/manifest files out there.........

Rgrds,
Rita
DCE
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?


If you more detailed info, download the following app (sysinfo) and run it -

http://gatekeep.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/
Ivan Krastev
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Also cfg2html will give you detailed info about your system - http://www.cfg2html.com/


regards,
ivan
Bill Hassell
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Start with uname -r. If it is B.10.20 or higher, you can get a lot of details with the command:

print_manifest

Or you can use SAM to see system properties. Choose Performance Monitors then System Properties.

Now if the revision is less than 10.xx, the task is much more difficult.


Bill Hassell, sysadmin
Raj D.
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Hi CA1450370,

You can know the hardware details with
# model
# print_manifest
# ioscan -fnC


and software details,
# uname -a
# swlist -l bundle


Cheers,
Raj.

* * Remember you must assign points to each one responding to your thread.

" If u think u can , If u think u cannot , - You are always Right . "
Raj D.
Honored Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Also check this out,

1. Nickel Script:

http://unixguide.net/scripts/nickel108

2. cfg2html

http://come.to/cfg2html

hth,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
perumal_2
Frequent Advisor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

Hi
You can use uname -m or /usr/bin/model
to find the model details of your hardware.
If you want to know the OS version installed you can use uname -a which will give OS details+model info. Wanted to know the sw & patches installed you can use swlist.
Try nickel it give everything you want in html format.

TQ
Perumal
CA1450370
Occasional Contributor

Re: HOW CAN I GET MY HP-UX SYSTEM INFO?

I could solved my issue with answers given to me here