- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- finding the Model of the processor using command l...
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
06-30-2006 01:24 AM
06-30-2006 01:24 AM
finding the Model of the processor using command line in HPUX
I want to find the model of the processor and also whether it is 32 or 64 bit using command line.
what i have to do? Also I want to know whether HPUX can be installed in Itanium based systems or it can be only installed in PA-RISC based systems.
Waiting for your reply.
thanks and Regards
Parthasarathy Venkatesan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2006 01:30 AM
06-30-2006 01:30 AM
Re: finding the Model of the processor using command line in HPUX
# getconf HW_CPU_SUPP_BITS
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2006 01:31 AM
06-30-2006 01:31 AM
Re: finding the Model of the processor using command line in HPUX
echo "selclass qualifier cpu;info;wait;infolog" | cstm
We had this very question yesterday:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1039121
HP-UX is supported on both architectures.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2006 01:32 AM
06-30-2006 01:32 AM
Re: finding the Model of the processor using command line in HPUX
# model
...will tell you the processor model
# getconf KERNEL_BITS
...will tell you the "bitness" of your current kernel, et.g. "64"
# getconf HW_CPU_SUPP_BITS
...will tell you the "bitness" your hardware will support, e.g. "32/64"
Yes, HP-UX 11.23 (11iv2) can be installed on either Itanium or PA-RISC servers.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2006 02:03 AM
06-30-2006 02:03 AM
Re: finding the Model of the processor using command line in HPUX
MODEL=$(grep -i $(model | tr "/" " " \
| awk '{print $NF}') \
/usr/sam/lib/mo/sched.models \
| awk '{print $NF}')
echo $MODEL
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2006 09:26 PM
07-02-2006 09:26 PM
Re: finding the Model of the processor using command line in HPUX
# model
or
# /usr/contrib/bin/machinfo
or
# echo "selclass qualifier system;info;wait;infolog" | cstm
(The 'cpu' STM info tool is not supported on Itanium, the functionality is in the 'system' info tool).
Itanium systems are all 64 bit, I believe.
HP-UX 11.11 (HP-UX 11i v1) runs only on PA systems, HP-UX 11.23 (HP-UX 11i v2) runs on both PA and IA (Itanium) systems.
Andrew