- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- system info
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
09-07-2006 07:08 AM
09-07-2006 07:08 AM
system info
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:19 AM
09-07-2006 07:19 AM
Re: system info
Best way is via online diagnostics.
cstm
or:
http://www2.itrc.hp.com/service/cki/search.do?searchString=UPERFKBAN00000726&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&hpweb_printable=true&searchCrit=allwords&search.x=28&admit=-1335382922+1157656691296+28353475&mode=id&category=c0&search.y=8
Lots of good stuff in there.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:20 AM
09-07-2006 07:20 AM
Re: system info
Otherwise to get past few months reports you can use "extract" command if your system already running Measureware.
You can use sar command too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:21 AM
09-07-2006 07:21 AM
Re: system info
# echo "selclass qualifier cpu;info;wait;infolog"|cstm > /tmp/stminfo
...then consult the matching hardware's documentation:
http://docs.hp.com/en/hw.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:22 AM
09-07-2006 07:22 AM
Re: system info
You can get the cpu information from cstm command.
#cstm
cstm>scl --> select for processor
cstm>info
cstm>infolog ---> this output will give detail information about the processors.
otherwise you can check from the BCH.
main>-->information menu -> processor.
Thanks and regards
V.Manoharan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:27 AM
09-07-2006 07:27 AM
Re: system info
You can get the cpu information from cstm command.
#cstm
cstm>scl --> select for processor
cstm>info
cstm>infolog ---> this output will give detail information about the processors.
otherwise you can check from the BCH.
main>-->information menu -> processor.
This will give information about the installed processor . you need to check the max processor support from the Product support Plan.
Thanks and regards
V.Manoharan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:37 AM
09-07-2006 07:37 AM
Re: system info
tahnks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 09:38 AM
09-07-2006 09:38 AM
Re: system info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 10:31 AM
09-07-2006 10:31 AM
Re: system info
Analogous to the gathering 'cpu' information with 'cstm', do:
# echo "selclass qualifier memory;info;wait;infolog" | cstm > /tmp/meminfo
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 02:55 PM
09-07-2006 02:55 PM
Re: system info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:12 PM
09-07-2006 07:12 PM
Re: system info
here is a script for cpu information.
regards;
mustafa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:28 PM
09-07-2006 07:28 PM
Re: system info
-------------------------------------------------------------------------------------------------------------
Finding CPU speed:
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm
------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
Finidng CPU speed in Mhz, in a single command:
echo "CPU Speed is= \c" ; echo itick_per_tick/D|adb -k /stand/vmunix /dev/kmem|tail -1|cut -f2 | awk '{printf "%0f MHz\n", $1/10000}'
------------------------------------------------------------------------------------------
Finaly also you can find with sam,
Cheers,
Raj.