- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to get Hardware configuration info - HP-UX 10....
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 12:41 PM
тАО09-19-2001 12:41 PM
processor type, speed, etc
qty of processor
memory size
etc
There are system commands that allow me to do this ?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 12:43 PM
тАО09-19-2001 12:43 PM
Re: How to get Hardware configuration info - HP-UX 10.20
If you have the Ignite/UX product installed (free from www.software.hp.com/products/IUX) you can use the /opt/ignite/bin/print_manifest command to generate a pretty decent hardware and software layout of your system.
-Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 12:49 PM
тАО09-19-2001 12:49 PM
Re: How to get Hardware configuration info - HP-UX 10.20
Go to SAM , goto performance monitor , goto system properties.
you will get information about no of cpu,memory , swap , speed and all.
you can also use foll commands:
dmesg for memory,
model for knowing system model,
swapinfo for swap.
i dont think there is any command for CPU .
Sachin S.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 12:55 PM
тАО09-19-2001 12:55 PM
Re: How to get Hardware configuration info - HP-UX 10.20
SAM-->Performance Monitors -->System Properties
Another way:
#top
you can see processor and memory info on the top of the output. You also can use command dmesg to see memory info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 12:59 PM
тАО09-19-2001 12:59 PM
Re: How to get Hardware configuration info - HP-UX 10.20
/usr/sbin/xstm
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:01 PM
тАО09-19-2001 01:01 PM
Re: How to get Hardware configuration info - HP-UX 10.20
If you STM installed on your system, you can get all this info very easily. STM is part of the Diag-tools on the support plus CD.
the three commands of STM are
xstm -> Graphical mode of STM
mstm -> character menu mode of STM
cstm -> Command line mode of STM
This will get you all the info you are looking for.
Have a look at one of the other questions posted by another forum meber.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x3f79abe92dabd5118ff10090279cd0f9,00.html
hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:12 PM
тАО09-19-2001 01:12 PM
SolutionHere is a short script that gets the number, type and speed of processors on a given machine:
-Santosh
#!/bin/sh
REV=`uname -r`
case $REV in
*09*)
MODEL_FILE=/usr/lib/sched.models
ADB=adb
MODEL=`uname -m | cut -d / -f2` ;;
*10*)
MODEL_FILE=/usr/lib/sched.models
ADB=adb
MODEL=`model | cut -d / -f2`
MODEL1=`model | cut -d / -f3` ;;
*11*)
MODEL_FILE=/usr/sam/lib/mo/sched.models
ADB="adb -k"
MODEL=`model | cut -d / -f2`
MODEL1=`model | cut -d / -f3` ;;
esac
PROCESSOR=`grep "^$MODEL1" "$MODEL_FILE" | awk ' { print $3 } ' - `
NUMPROC=`ioscan -kfnC processor | grep processor|wc -l`
echo "$NUMPROC x \c"
echo "$PROCESSOR\t\c"
echo itick_per_tick/D | $ADB /stand/vmunix /dev/kmem | tail -1 | awk '{print $2/10000 " MHz"}'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:22 PM
тАО09-19-2001 01:22 PM
Re: How to get Hardware configuration info - HP-UX 10.20
Not sure if this is an overkill, but there are other tools/scripts which give lots of other information.
Nickel is an unsupported script from HP, but works like a charm
ftp://contrib:9unsupp8@hprc.external.hp.com/sysadmin/inventory/nickel/
Cfg2html is pretty nice too
http://come.to/cfg2html
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:50 PM
тАО09-19-2001 01:50 PM
Re: How to get Hardware configuration info - HP-UX 10.20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:51 PM
тАО09-19-2001 01:51 PM
Re: How to get Hardware configuration info - HP-UX 10.20
Whenever you create an Ignite recovery tape of your system for "disaster" recovery purposes, using the 'make_tape_recovery' utility provided with newer Ignite versions, you will *gratuitously* receive a system configurtion summary.
You *automatically* get a nicely formatted, summary of hardware, installed software, file system layout, swap information, kernel configuration and essential network parameters *without doing anything* other than creating the recovery tape! There is no need to run a 'print_manifest'. Rather, one is automatically created each time as:
/var/opt/ignite/recover/latest/manifest
Regards!
...JRF...