- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to retrive information if HW / OS is 32 or 64 ...
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-09-2003 10:13 PM
07-09-2003 10:13 PM
e.g. 9000/800:32/64
and the installed Operating System
e.g. HP-UX:32 B.11.00
The most important information i would like to
retrive the information if it is 32 or 64 bit,
hardware and which OS version has been installed. This information is visible in software distributor, but i would like to get it from command line.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:19 PM
07-09-2003 10:19 PM
Re: How to retrive information if HW / OS is 32 or 64 bit?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:22 PM
07-09-2003 10:22 PM
Solutionhttp://devrsrc1.external.hp.com/STK/serversupport.html
As far as the command line is concerned:
# getconf KERNEL_BITS (current OS bits)
# getconf HW_CPU_SUPP_BITS (whether your system is capable of running 32 or 64 bit. If it can run both it will answer
32/64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:22 PM
07-09-2003 10:22 PM
Re: How to retrive information if HW / OS is 32 or 64 bit?
HP-UX a7server B.11.00 A 9000/800 2007074959 two-user license
I'm looking for 32/64 bit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:22 PM
07-09-2003 10:22 PM
Re: How to retrive information if HW / OS is 32 or 64 bit?
Use "model" to find the hardware type.
Use "getconf KERNEL_BITS" to get 32 or 64 bit.
Use "uname -a" to get OS version.
Ollie.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:36 PM
07-09-2003 10:36 PM
Re: How to retrive information if HW / OS is 32 or 64 bit?
# file /stand/vmunix
# getconf KERNEL_BITS
To find out the processor info:
# ioscan -fnkC processor
# echo "selclass qualifier cpu;infolog" | /usr/sbin/cstm | grep "CPU Module"
processor type:
# model
processor speed:
# echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
To find out OS details:
# uname -a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2003 10:40 PM
07-09-2003 10:40 PM
Re: How to retrive information if HW / OS is 32 or 64 bit?
#getconf HW_CPU_SUPP_BITS
#getconf HW_32_64_CAPABLE
Also you can check /etc/.supported_bits to check whether you machine can support 64 bits
Thanks