- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Information of CPU and Mem
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
04-07-2004 03:54 AM
04-07-2004 03:54 AM
I need to know this information on HP-UX 11.0
G221 - PA-RISC 8000 Twin CPU (biprocessor)2MB cache
How can extract this information?
Thanks in advance
Alex
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 03:56 AM
04-07-2004 03:56 AM
Re: Information of CPU and Mem
The simplest ways to get these are
CPU:
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
MEMORY:
grep Physical /var/adm/syslog/syslog.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 04:03 AM
04-07-2004 04:03 AM
Re: Information of CPU and Mem
Try out the model command also.
It will give what type of HPUX box you have got....
regds
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 04:37 AM
04-07-2004 04:37 AM
Re: Information of CPU and Mem
Number of processors
# ioscan -fnkC processor
CPU speed
# echo "itick_per_usec/D" | adb -k /stand/vmunix /dev/kmem
Total memory
# echo "phys_mem_pages/D" | adb -k /stand/vmunix /dev/kmem
Output is in pages. Multiply the output by 4 to get the total amount of memory in KB.
Processor type
# model
9000/800/XXX
# grep XXX /usr/sam/lib/mo/sched.models
Sundar
Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 05:34 AM
04-07-2004 05:34 AM
Solution# hpmem
HP-UX pc0003 B.11.11 U 9000/800 2504392627 unlimited-user license
CPU Count: 6
CPU Speed: 750 MHz
CPU HW Support: 64-bit
Kernel Support: 64-bit
RAM Size: 10080 MB
bufpages: 806 MB
maxuprc: 800
maxvgs: 128
maxfiles: 2048
max_thread_proc: 256
nfile: 189100
nflock: 1200
nproc: 2560
ninode: 16384
shmmax: 1073741824
shmmni: 256
dbc_max_pct: 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 05:37 AM
04-07-2004 05:37 AM
Re: Information of CPU and Mem
DESCRIPTION
SysInfo collects configuration information about the current system.
It also checks for some common problems including stale mirrors (if
applicable). It sends its output to a logfile or to the display.
SysInfo is supported by the HP Services field ASC\'s and runs on
HP 9000 Servers, including 700/800 systems running HP\-UX 10.x and later.
I run it from cron:
# Run the sysinfo script
0 6 1 * * /usr/local/sysinfo/sysinfo -a -b -o /usr/tmp/`hostname`.sysinfo >/tmp/sysinfo.cron 2>&1
Rgds...Geoff