Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AIX Command-Determine RAM & DASD

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How to I determine the amount of RAM and DASD I have in my system? What command lets me konw tihs??

Thanks,

Jay
 
try:

for memory:

# lscfg -vp | grep mem


for disk/s:

1. if this command gives you:

# root pts/4 $ lsdev -Cc disk
hdisk0 Available 00-01-00-6,0 Other SCSI Disk Drive
hdisk2 Available 00-01-00-0,0 320 MB SCSI Disk Drive
hdisk3 Available 00-01-00-3,0 Other SCSI Disk Drive

2. try one-by-one:

# root pts/4 $ lspv hdisk0
# root pts/4 $ lspv hdisk2
# root pts/4 $ lspv hdisk3

and look for the line for each:

TOTAL PPs: 507 (2028 megabytes)
 
If a disk is not in a volume group, an "lspv" will fail. for those disks (or most any disk), "bootinfo -s" will give size in MB.

Bill.
 
and include the diskname:

bootinfo -s hdiskn

n=any # representing the disk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top