- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- System configuration
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
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
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
07-25-2006 04:56 PM
07-25-2006 04:56 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:02 PM
07-25-2006 05:02 PM
SolutionYou can run the online diagnostics for example, or
/opt/ignite/bin/print_manifest
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:02 PM
07-25-2006 05:02 PM
Re: System configuration
Steps:
1. Unzip nickel.zip in PC
2. If /opt/contrib/bin does not exist,
# mkdir -p /opt/contrib/bin
3. FTP in "BINARY" mode, 'nickel' to /opt/contrib/bin
4. # cd /opt/contrib/bin
5. # chmod 555 nickel
6. # ./nickel
7. A file: nickel.yourhostname.tar.gz will be created.
8. FTP in "BINARY" mode, nickel.yourhostname.tar.gz to PC
("ASCII" mode will corrupt the .tar.gz file)
thanks
freddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:10 PM
07-25-2006 05:10 PM
Re: System configuration
It is giving almost all the required information. But i am confused in one place. i have a 7420 and i am using 2 npar and one npar has 2 vpar. But the output shows it has three processor. Also i need to find out the speed and model of the processor.
System Hardware
Model: 9000/800/rp7420
Main Memory: 2029 MB
Processors: 3
OS mode: 64 bit
LAN hardware ID: 0x001279B353C2
LAN hardware ID: 0x001279B353C3
LAN hardware ID: 0x000F202BE4A5
LAN hardware ID: 0x001185EB5358
LAN hardware ID: 0x001185EB5345
Software ID: Z3e119e01d7e205d5
Partition ID: Z3e119e01d7e205d5_P1_V00
Keyboard Language: Not_Applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:17 PM
07-25-2006 05:17 PM
Re: System configuration
a possibility is to run SAM -> performance monitors -> system properties
The diags output is limited to the nPar level. You will see the number of CPUs in a npar, regardsless if there are vPars running or not.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:25 PM
07-25-2006 05:25 PM
Re: System configuration
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1044137&admit=-682735245+1153891295174+28353475
(see the post from Pete Randall)
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:34 PM
07-25-2006 05:34 PM
Re: System configuration
number of CPU's can be found from "top" command.
lan informations for 9000systems:
"lanscan" will give information
http://docs.hp.com/en/A5201-10028/ix01.html
lanscan man page:
http://docs.hp.com/en/B2355-90781docs/B2355-90781docs.pdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:36 PM
07-25-2006 05:36 PM
Re: System configuration
For CPU Speed Just type this command.
echo "itick_per_usec/D" | adb -k /stand/vmunix /dev/kmem
Regards,
Sudhakaran.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 05:56 PM
07-25-2006 05:56 PM
Re: System configuration
you can also get more information on your LAN interfaces using the following script:
#!/usr/bin/sh
PATH=/usr/sbin:/usr/bin
ppas=`lanscan | awk '$3~/^[0-9]$/{print $3}' | xargs`
for i in $ppas
do
printf "Card at PPA %s - " $i
ipa=`ifconfig lan${i} 2>/dev/null | awk '{ip=$2}END{if(ip==""){printf("Not assig
ned ")}else{printf("%s ",ip)}}'`
printf "IP Address: %15s- " "$ipa"
lanadmin -x $i 2>/dev/null | awk '{$1="";printf("%s",$0)}'
echo ""
done
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2006 06:01 PM
07-25-2006 06:01 PM
Re: System configuration
please run nickel script to get information for each server. i think about number of cpu, cpu speed and size for memory already capture by nickel. the output is HTML file. so put at your pc, and open that file. you can get all information.
thanks
freddy