- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- memory ,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
08-05-2004 07:51 AM
08-05-2004 07:51 AM
it's long time since i used these commands.
Please help me how to find out total disk space,cpus,memory in hp system
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2004 08:01 AM
08-05-2004 08:01 AM
Re: memory ,cpu
# hpmem
HP-UX svr003 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
bdf for disk space...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2004 01:07 PM
08-05-2004 01:07 PM
Re: memory ,cpu
disks and their physical size:
diskinfo /dev/rdsk/each_disk_device
currently mounted filesystems:
bdf
swap space:
swapinfo -tm
vgdisplay -v
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2004 10:42 PM
08-05-2004 10:42 PM
Re: memory ,cpu
CPU speed
#echo itick_per_usec/D |adb -k /stand/vmunix /dev/mem
number od processors
#echo "runningprocs/D" | adb -k /stand/vmunix /dev/mem
Other way - Memory can be find after boot in
dmesg |grep Physical
disk size
#diskinfo /dev/rdsk
or create script like:
for i in `ioscan -kfnC disk |grep rdsk |awk '{ print $2 }'`
do
diskinfo $i
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 01:59 AM
08-06-2004 01:59 AM
Solutionbdfmegs and vgttl(which uses bdfmegs):
# vgttl
VG Size(MB) In use Available
vg00 15612 8281 7060
vg01 12288 4 11901
vg50 1345968 1283879 61604
vg51 2048 1028 956
vg52 241152 161965 77058
vg55 6144 2980 2973
vg56 34512 4 34239
vg57 25880 2333 23047
---- -------------- -------------- --------------
Totl 1683604 1460474 218838
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 03:53 AM
08-06-2004 03:53 AM
Re: memory ,cpu
the scripts were very useful to find info.
But regarding disks i'm trying to find out how many disks in a system with size info.
I have used sam to find this out .In which
"disks and filesystems" returned some info.
Is that right info regarding disks.
Please help.
I like to see total no of disks in a system with size info.Thanks really for all your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 06:31 AM
08-06-2004 06:31 AM
Re: memory ,cpu
for DISK in `ioscan -funC disk |grep rdsk|awk '{print $2}'`
do
diskinfo $DISK |grep size
don
or something like that...
tailor to your needs...
Rgds...Geoff