AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.


#Power
 View Only
  • 1.  determine system memory

    Posted Tue May 22, 2007 07:59 AM

    Originally posted by: SystemAdmin


    I have a P550 frame with 6 LPARs, how do I determine the Frame's entire memory, and how much is being allocated to each LPAR, and how much is free?

    TIA
    #AIX-Forum


  • 2.  Re: determine system memory

    Posted Tue May 22, 2007 10:04 AM

    Originally posted by: SystemAdmin


    You can get this information by using HMC GUI interface or CLI. I am here with giving the CLI example. This is two step processes.

    1.) get the memory configuration for managed Frame (system)
    2.) Get the memory configuration for all the LPARs with in managed system.
    I am not aware of any other way of doing.
    1.) To get managed system memory information

    $ lshwres -m <managed_system_name> -r mem --level sys

    configurable_sys_mem=16384,curr_avail_sys_mem=10528,pend_avail_sys_mem=10528,installed_sys_mem=16384,max_capacity_sys_mem=16384,deconfig_sys_mem=0,sys_firmware_mem=736,mem_region_size=16

    2.) To get the memory configuration for all the LPARs within managed system

    $ lshwres -m appsrvr02_ms -r mem --level lpar

    lpar_name=lpar_vio02,lpar_id=2,curr_min_mem=256,curr_mem=1024,curr_max_mem=2048,pend_min_mem=256,pend_mem=1024,pend_max_mem=2048,run_min_mem=256,run_mem=1024
    lpar_name=lpar_vio03,lpar_id=3,curr_min_mem=256,curr_mem=1024,curr_max_mem=4096,pend_min_mem=256,pend_mem=1024,pend_max_mem=4096,run_min_mem=256,run_mem=1024
    You can use the filter option to get only needed information
    #AIX-Forum