Here is the command for AIX which shows you the count of processor cards (sockets) installed in your Power server including information about count of cores per one socket. The terminology processor in IBM Power server and AIX world describes core in relation to HW.
Command:
lscfg -vp|grep WAY
Example:
lscfg -vp|grep WAY
6-WAY PROC CUOD:
6-WAY PROC CUOD:
Expample shows you that system has two sockets and each has 6 cores, so system has 12 cores.
Showing posts with label Power. Show all posts
Showing posts with label Power. Show all posts
Wednesday, April 1, 2015
Wednesday, October 12, 2011
Monday, October 3, 2011
Tuesday, August 16, 2011
HMC command to list LPAR profile attributes
Log in HMC shell
List all profiles on one machine and it's CPU attributes.
List all profiles on one machine and it's CPU attributes.
for LPAR in `lssyscfg -r lpar -m MACHINE_NAME -F lpar_id | sort -n`
do
lssyscfg -r prof -m MACHINE_NAME --filter "lpar_ids=${LPAR}" -F "name:lpar_name:lpar_id:proc_mode:min_proc_units:desired_proc_units:max_proc_units:min_procs:desired_procs:max_procs:sharing_mode:uncap_weight" --header
done
do
lssyscfg -r prof -m MACHINE_NAME --filter "lpar_ids=${LPAR}" -F "name:lpar_name:lpar_id:proc_mode:min_proc_units:desired_proc_units:max_proc_units:min_procs:desired_procs:max_procs:sharing_mode:uncap_weight" --header
done
Subscribe to:
Posts (Atom)