- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Processor Megahertz & Architecture (bit)
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
10-02-2003 08:32 PM
10-02-2003 08:32 PM
Processor Megahertz & Architecture (bit)
I' want to know, on a HP-UX11.00, this info:
- Processor Megahertz
- Number of bits of the architecture (32 or 64bits)
Please suggest me a useful command.
Regards...
PSS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 08:38 PM
10-02-2003 08:38 PM
Re: Processor Megahertz & Architecture (bit)
try sam -> performance monitors -> system properties.
HTH
aparna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 08:43 PM
10-02-2003 08:43 PM
Re: Processor Megahertz & Architecture (bit)
see man getconf.
#getconf HW_CPU_SUPP_BITS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 08:46 PM
10-02-2003 08:46 PM
Re: Processor Megahertz & Architecture (bit)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 09:04 PM
10-02-2003 09:04 PM
Re: Processor Megahertz & Architecture (bit)
Check Merijn's (Procura's) webpage, here you will find a lot of usefull tips including yours.
http://www.cmve.net/~merijn/
Mehz.
# echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
64 or 32 bits
# file /stand/vmunix
Regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 09:06 PM
10-02-2003 09:06 PM
Re: Processor Megahertz & Architecture (bit)
#echo itick_per_usec/D | adb /stand/vmunix /dev/mem
running kernel arhitecture
#getconf KERNEL_BITS
supported architecture
#getconf HW_CPU_SUPP_BITS
#getconf HW_32_64_CAPABLE
Also you can check /etc/.supported_bits
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2003 10:27 PM
10-02-2003 10:27 PM
Re: Processor Megahertz & Architecture (bit)
case "$OS_REL" in
"10.20")
OS_BIT=32
CPU_BIT=32
;;
"11*")
OS_BIT=`getconf KERNEL_BITS`
CPU_BIT=`getconf HW_CPU_SUPP_BITS`
;;
esac
Kernel=/stand/vmunix
CPUVER=`echo "cpu_version/X" | adb -k $Kernel /dev/kmem | grep cpu_version| awk '{ if (NF == 2) {print $2}}'`
CPUREV=`echo "cpu_revision_number/X" | adb -k $Kernel /dev/kmem | grep cpu_revision_number | awk ' { if (NF == 2) {print $2}}'`
CPU_TYPE=`grep 0x$CPUVER /usr/include/sys/unistd.h | awk '{print $7}'`
echo "Processor Type : " $CPU_TYPE $CPUVER"."$CPUREV - $CPU_BIT"Bit"