HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to determine hardware info HP735
Operating System - HP-UX
1834465
Members
2905
Online
110067
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
06-23-2004 03:37 AM
06-23-2004 03:37 AM
I have an old 735 and need to find out the hardware info on it. How do you find out how much memory it has? CPU speed?, etc....
Does HP have a command similar to Solaris's prtdiag?
Thanks for your help.....
Does HP have a command similar to Solaris's prtdiag?
Thanks for your help.....
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 03:44 AM
06-23-2004 03:44 AM
Re: How to determine hardware info HP735
Hi,
There isn't a single command that gives you all the information. There are contributed scripts/tools that you can use.
Try "SysInfo" or "cfg2html". Both should print this information. Search the forums and you will find posts and attachments with those tools.
-Sri
There isn't a single command that gives you all the information. There are contributed scripts/tools that you can use.
Try "SysInfo" or "cfg2html". Both should print this information. Search the forums and you will find posts and attachments with those tools.
-Sri
You may be disappointed if you fail, but you are doomed if you don't try
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 03:44 AM
06-23-2004 03:44 AM
Solution
Michael,
I use these little scripts:
Memory -
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
CPU Speed -
HPUX=/stand/vmunix
MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo $MHZ
You can also use "Ioscan -k |grep -n processor |wc -l" for the number of processors (though I'm sure you only have one) and a combination of ioscan -kfnCdisk and diskmap to discover the sizes of your disk drives.
Pete
Pete
I use these little scripts:
Memory -
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
CPU Speed -
HPUX=/stand/vmunix
MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo $MHZ
You can also use "Ioscan -k |grep -n processor |wc -l" for the number of processors (though I'm sure you only have one) and a combination of ioscan -kfnCdisk and diskmap to discover the sizes of your disk drives.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 03:50 AM
06-23-2004 03:50 AM
Re: How to determine hardware info HP735
I'm sure someone will mention the manifest if the OS is new enough to have used Ignite(if they haven't already by the time I get this typed and submitted).
Just in case your running an ancient OS like I was on the 735s at myprevious job or just as an alternative, here's a script that I wrote to give me a report of several different hardware and software items (basically an overall system profile, hence why I named it sysprof). I grabbed the code to get the CPU frequency and similar from somewhere online. The CPU type portion doesn't work for very many CPU types. Overall, it gives quite a bit of useful information, though not exhaustive. It was written to work with 9.X, 10.20, and 11.X. It would probably work fine on 10.X below 10.20 if conditionals were changed, but I had no reason to go there or any way to test it so I didn't bother.
Just in case your running an ancient OS like I was on the 735s at myprevious job or just as an alternative, here's a script that I wrote to give me a report of several different hardware and software items (basically an overall system profile, hence why I named it sysprof). I grabbed the code to get the CPU frequency and similar from somewhere online. The CPU type portion doesn't work for very many CPU types. Overall, it gives quite a bit of useful information, though not exhaustive. It was written to work with 9.X, 10.20, and 11.X. It would probably work fine on 10.X below 10.20 if conditionals were changed, but I had no reason to go there or any way to test it so I didn't bother.
--
Jeff Traigle
Jeff Traigle
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP