- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: System Stat Cmds: Disk/RAM/CPU
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
12-09-2003 09:52 AM
12-09-2003 09:52 AM
Disk Space
Available Disk Space
Memory/ RAM
Processor
uname -a gives me
HP-UX systemname B.11.00 U 9000/800 155464616 unlimited-user license
Is bdf my best bet for the disk info?
How do I show system RAM & Processors?
-karlski
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 09:54 AM
12-09-2003 09:54 AM
Re: System Stat Cmds: Disk/RAM/CPU
bdf shows only mounted filesystems
Attaching a script that displays memory by slot and size.
SEO
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
12-09-2003 09:56 AM
12-09-2003 09:56 AM
Re: System Stat Cmds: Disk/RAM/CPU
Use the extract command to extract the MeasureWare data to one or more flat files.
Executing:
$ extract -g -xp -b TODAY-1 -e TODAY
will extract collected global detailed data from the previous 24 hours to the xfrdGLOBAL.asc file:
$ ll
total 1336
-rw-r--r-- 1 jdonovan users 679800 Nov 10 10:41 xfrdGLOBAL.asc
This is an ordinary text file which can be imported into Excel.
There are many options for what data can be extracted. See the extract manpage for details.
To graph overall CPU utilization, you would select the column labelled "CPU %". Likewise, to graph overall memory utilization, choose the column labelled "Memory %".
....otherwise use sar and the sa1 and sa2 scripts (see the man page for sadc)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 10:00 AM
12-09-2003 10:00 AM
Re: System Stat Cmds: Disk/RAM/CPU
# /opt/ignite/bin/print_manifest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 10:01 AM
12-09-2003 10:01 AM
Solutionbdf
diskinfo /dev/rdsk/cxtxdx
pvdisplay /dev/rdsk/cxtxdx
Memory:
dmesg |grep Physical
swapinfo -tm
CPU:
ioscan -fnC processor
For more info, download the following depot, gunzip, untar and execute.
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 10:52 AM
12-09-2003 10:52 AM
Re: System Stat Cmds: Disk/RAM/CPU
To add to what the others have given.
CPU Speed:
# echo "itick_per_usec/D" | adb /stand/vmunix /dev/kmem
Physical Memory (RAM):
# echo "phys_mem_pages/D" | adb /stand/vmunix /dev/kmem
(Multiply value by 4 to get RAM in KB)
Free Memory:
# vmstat 1 2 | tail -1 | awk '{ printf "%-d\n", $5*4}'
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:19 PM
12-09-2003 02:19 PM
Re: System Stat Cmds: Disk/RAM/CPU
For other alternative, you can also use SAM to get all this information,
(i) Disk Space
SAM->Disk and File Systems
(ii) Available Disk Space
SAM->Disk and File Systems
(iii)Memory/ RAM
SAM->Performance Monitor->System Properties
(iv)Processor
SAM->Performance Monitor->System Properties
Thanks & Regards
Sri