Showing posts with label LPAR. Show all posts
Showing posts with label LPAR. Show all posts

Creating LPAR from command line from HMC



Create new LPAR using command line

mksyscfg -r lpar -m MACHINE -i name=LPARNAME, profile_name=normal, lpar_env=aixlinux, shared_proc_pool_util_auth=1,min_mem=512, desired_mem=2048, max_mem=4096, proc_mode=shared, min_proc_units=0.2, desired_proc_units=0.5,max_proc_units=2.0, min_procs=1, desired_procs=2, max_procs=2, sharing_mode=uncap, uncap_weight=128,boot_mode=norm, conn_monitoring=1, shared_proc_pool_util_auth=1

Note :- Use man mksyscfg command for all flag information.

Onother method of creating LPAR through configuration file we need to create more than one lPAR at same time

Here is an example for 2 LPARs, each definition starting at new line:

name=LPAR1,profile_name=normal,lpar_env=aixlinux,all_resources=0,min_mem=1024,desired_mem=9216,max_mem=9216,proc_mode=shared,min_proc_units=0.3,desired_proc_units=1.0,max_proc_units=3.0,min_procs=1,desired_procs=3,max_procs=3,sharing_mode=uncap,uncap_weight=128,lpar_io_pool_ids=none,max_virtual_slots=10,"virtual_scsi_adapters=6/client/4/vio1a/11/1,7/client/9/vio2a/11/1","virtual_eth_adapters=4/0/3//0/1,5/0/4//0/1",boot_mode=norm,conn_monitoring=1,auto_start=0,power_ctrl_lpar_ids=none,work_group_id=none,shared_proc_pool_util_auth=1
name=LPAR2,profile_name=normal,lpar_env=aixlinux,all_resources=0,min_mem=1024,desired_mem=9216,max_mem=9216,proc_mode=shared,min_proc_units=0.3,desired_proc_units=1.0,max_proc_units=3.0,min_procs=1,desired_procs=3,max_procs=3,sharing_mode=uncap,uncap_weight=128,lpar_io_pool_ids=none,max_virtual_slots=10,"virtual_scsi_adapters=6/client/4/vio1a/12/1,7/client/9/vio2a/12/1","virtual_eth_adapters=4/0/3//0/1,5/0/4//0/1",boot_mode=norm,conn_monitoring=1,auto_start=0,power_ctrl_lpar_ids=none,work_group_id=none,shared_proc_pool_util_auth=1

Copy this file to HMC and run:

mksyscfg -r lpar -m SERVERNAME -f /tmp/profiles.txt

where profiles.txt contains all LPAR informations as mentioned above.

To change setting of your Lpar use chsyscfg command as mentioned below.

Virtual scsi creation & Mapping Slots
#chsyscfg -m Server-9117-MMA-SNXXXXX -r prof -i 'name=server_name,lpar_id=xx,"virtual_scsi_adapters=301/client/4/vio01_server/301/0,303/client/4/vio02/303/0,305/client/4/vio01_server/305/0,307/client/4/vio02_server/307/0"'

IN Above mentioned command we are creating Virtual scsi adapter for client LPAR & doing Slot mapping with VIO servers. In above scenario there is two VIO servers for redundancy.

Slot Mapping

Vio01_server ( VSCSI server slot) Client ( Vscsi client Slot)
Slot 301 Slot 301
Slot 303 Slot 303

VIO02_server (VSCSI sever Slot) Client ( VSCSI client Slot)
Slot 305 Slot 305
Slot 307 Slot 307

These Slot are mapped in such a way if Any disk or logical volume are mapped to Virtuals scsi adapter through VIO command "mkvdev".

Syntax for Virtual scsi adapter


virtual-slot-number/client-or-server/supports-HMC/remote-lpar-ID/remote-lpar-name/remote-slot-number/is-required

As in command above mentioned command mksyscfg
"virtual_scsi_adapters=301/client/4/vio01_server/301/0"

means

301 - virtual-slot-number
client-or-server - client (Aix_client)
4 -- Partiotion Id ov VIO_01 server (remote-lpar-ID)
vio01_server - remote-lpar-name
301 -- remote-slot-number (VIO server_slot means virtual server scsi slot)
1 -- Required slot in LPAR ( It cannot be removed from DLPAR operations )
0 --means desired ( it can be removed by DLPAR operations)


To add Virtual ethernet adapter & slot mapping for above created profile

#chsyscfg -m Server-9117-MMA-SNxxxxx -r prof -i 'name=server_name,lpar_id=xx,"virtual_eth_adapters=596/1/596//0/1,506/1/506//0/1,"'

Syntax for Virtual ethernet adapter


slot_number/is_ieee/port_vlan_id/"additional_vlan_id,additional_vlan_id"/is_trunk(number=priority)/is_required

means

So the adapter with this setting 596/1/596//0/1 would say it is in
slot_number 596, Its is ieee, the port_vlan_id is 1, it has no VLAN id assigned, It is not a trunk adapter and it is required.

Reference: http://santosh-aix.blogspot.com

Listing LPAR information from HMC command line interface



To list managed system (CEC) managed by HMC

#
lssyscfg -r sys -F name

To list number of LPAR defined on the Managed system (CEC)

# lssyscfg -m SYSTEM(CEC) -r lpar -F name,lpar_id,state

To list LPAR created in your system use lsyscfg command as mentioned below.

# lssyscfg -r prof -m SYSTEM(CEC) --filter "lpar_ids=X, profiles_names=normal"

Flags

m-> Managed System name
lpar_ids -> Lpar ID (numeric Id for each LPAR created in the Managed system (CEC)
profile_name -> To choose profile of LPAR

To start console of LPAR from HMC

# mkvterm -m SYSTEM(CEC) --id X

m- > managed system (ex -p5-570_xyz)
id - > LPAR ID

To finish a VTERM, simply press ~ followed by a dot .!

To disconnect console of LPAR from HMC

# rmvterm -m SYSTEM(CEC) --id x

To access LPAR console for diffrent Managed system from HMC

#vtmenu


Activating Partition

hscroot@hmc-570:~> lssyscfg -m Server-9110-510-SN100xxx -r lpar -F name,lpar_id,state,default_profile VIOS1.3-FP8.0,1,Running,default linux_test,2,Not Activated,client_default hscroot@hmc-570:~> chsysstate -m Server-9110-510-SN100xxxx -r lpar -o on -b norm --id 2 -f client_default

The above example would boot the partition in normal mode. To boot it into SMS menu use -b sms and to boot it to the OpenFirmware prompt use -b of.

To restart a partition the
chsysstate command would look like this:

hscroot@hmc-570:~> chsysstate -m Server-9110-510-SN100xxxx -r lpar --id 2 -o shutdown --immed --restart

And to turn it off - if anything else fails - use this:

hscroot@hmc-570:~> chsysstate -m Server-9110-510-SN100xxxx -r lpar --id 2 -o shutdown --immed
hscroot@hmc-570:~> lssyscfg -m Server-9110-510-SN100xxxx -r lpar -F name,lpar_id,state
VIOS1.3-FP8.0,1,Running
linux_test,2,Shutting Down

Deleting Partition

hscroot@hmc-570:~> lssyscfg -m Server-9110-510-SN100xxxx -r lpar -F name,lpar_id
VIOS1.3-FP8.0,1
linux_test,2
hscroot@hmc-570:~> rmsyscfg -m Server-9110-510-SN100xxxx -r lpar --id 2
hscroot@hmc-570:~> lssyscfg -m Server-9110-510-SN100xxxx -r lpar -F name,lpar_id
VIOS1.3-FP8.0,1

AIX 6.1 WPAR Commands


Most of these commands are only runable by root user for the Global LPAR (GlobalEnvironment).

chwpar Modifies dynamically the configuration options of the WPAR even when it is
running.

clogin Provides a mechanism for the root user to log in or run a command within a
workload partition. The “clogin” command uses a pseudo-terminal allocated on
the Global Environment (see in the mobility part the impact of this) and creates
a login shell running which belongs to the workload partition.

lswpar Prints information about WPARs

mkwpar Specific for System WPAR - Builds the infrastructure and the configuration
file. Then it creates and populates the WPARs file systems. Allocate the
specified resources as well as the WLM information (if any) and eventually
starts it. Specifying whether the workload partitions should be automatically
started on system boot or when /etc/rc.wpars is executed.

startwpar
Activates the System WPAR defined with mkwpar

wparexec Specific for Application WPAR – Builds, create specification file and
eventually starts the Application WPAR

rebootwpar Stops and resumes a System Workload Partition. It cannot be run within a
WPAR

rmwpar Deletes the specified Workload Partition from the system as well as its
configuration and its WLM profile

stopwpar Kills the WPAR and deallocate all resources belonging to it. It removes the
Application WPAR

syncwpar Specific to System WPAR - Synchronizes the software installed in the global
shared parts (usually /usr and /opt) with the workload partition's root part

Note: The mkwpar and chwpar can update the global file /etc/wpars:

Note:
/etc/rc.wpars: Specific to System WPAR - this script is run at main system boot it
invokes the startwpar command on all workload partitions with the autostart option.
Some commands have different or enhanced behavior in a WPAR environment. The list
includes
acctcom, acctctl, df, domainname, hosted, hostname, ifconfig, ioo, ipcrm, ipcs,
mkclass, mount, netstat, nfso, no, projctl, ps , schedo, uname, vmo, wlmstat, wlmtune,
wlmcntrl
. This change is described in the AIX 6 documentation.

The simplest way to administrate WPARs using command lines (CLI) is to issue the
command smitty wpar which will provide the interface to these commands.

Reference: http://santosh-aix.blogspot.com

Changing WPAR properties & starting it in Verbose mode



1 To modify the host name of the workload partition called roy, enter the following command:

chwpar -h roy.com roy
2 To remove a network address from the workload partition called dale, enter the following command:

chwpar -K -N address=219.81.45.65 dale
3 To disable resource controls in the workload partition called wayne while retaining the settings for future use, enter the following command:

chwpar -R active=no wayne
4 To remove the device /dev/foo, exported by default through the devexportsFile, from a workload partition, enter the following command:

chwpar -D globaldev=/dev/foo export=no moore
5 To export the device /dev/bar, permitted by the devexportsFile but not exported, enter the following command:

chwpar -D globaldev=/dev/bar export=yes moore
6 To rename the workload partition from moore to hart, enter the following command:

chwpar -n hart moore
=========================================================



To start WPAR in verbose mode.

tarting workload partition MyTestWpar3.
Mounting all workload partition file systems.
Mounting /wpars/MyTestWpar3
Mounting /wpars/MyTestWpar3/home
Mounting /wpars/MyTestWpar3/opt
Mounting /wpars/MyTestWpar3/proc
Mounting /wpars/MyTestWpar3/tmp
Mounting /wpars/MyTestWpar3/usr
Mounting /wpars/MyTestWpar3/var
Loading workload partition.
$corral_t = {
'name' => 'MyTestWpar3',
'wlm_cpu' => [
undef,
undef,
undef,
undef
],
'path' => '/wpars/MyTestWpar3',
'hostname' => 'MyTestWpar3',
'wlm_procVirtMem' => [
-1,
undef
],
'wlm_mem' => [
undef,
undef,
undef,
undef
],
'key' => 5,
'vips' => [
[
'en0',
'172.29.138.24',
'255.255.192.0',
'172.29.191.255'
]
],
'wlm_rset' => undef,
'opts' => 4,
'id' => 0
};
Exporting workload partition devices.
Starting workload partition subsystem cor_MyTestWpar3.
0513-059 The cor_MyTestWpar3 Subsystem has been started. Subsystem PID is 536778.
Verifying workload partition startup.
Return Status = SUCCESS.
lpar47p682e_pub[/] >

Reference: http://santosh-aix.blogspot.com

To remove WPAR from command line


par47p682e_pub[/] > rmwpar TestWpar3

rmwpar: Removing file system /wpars/TestWpar3/var.
rmlv: Logical volume fslv15 is removed.
rmwpar: Removing file system /wpars/TestWpar3/usr.
rmwpar: Removing file system /wpars/TestWpar3/tmp.
rmlv: Logical volume fslv14 is removed.
rmwpar: Removing file system /wpars/TestWpar3/proc.
rmwpar: Removing file system /wpars/TestWpar3/opt.
rmwpar: Removing file system /wpars/TestWpar3/home.
rmlv: Logical volume fslv13 is removed.
rmwpar: Removing file system /wpars/TestWpar3.
rmlv: Logical volume fslv12 is removed.

To remove WPAR first we need to stop WPAR in order to remove it.
After removing WPAR all filesystem related to that WPAR gets deleted.

Reference: http://santosh-aix.blogspot.com

Creating WPAR on command line


1 To create a workload partition called roy, enter the following command:

mkwpar -n roy -N address=192.168.0.51
All values that are not specified are generated or discovered from the global system's settings.
2 To create a workload partition based on an existing specification file, enter the following command:

mkwpar -f /tmp/wpar1.spec
3 To create a modified copy of a specification file with a new IP address, host name, and workload partition name (without creating a workload
partition), enter the following command:

mkwpar -f /tmp/wpar1.spec -N address=219.168.45.132 -h www.flowers.com -n wpar2
-o /tmp/wpar2.spec -w
4 To create a new specification file based on an existing workload partition, enter the following command:

mkwpar -e wpar1 -o /tmp/wpar2.spec -w
5 To recreate a workload partition that was previously removed with the rmwpar -p command, enter the following command:

mkwpar -p wparname

==========================================================
Actual WPAR creation screen shots.

par47p682e_pub[/] > mkwpar -n MyTestWpar2 -N ip= xyz
mkwpar: Creating file systems...
/
/home
/opt

/proc
/tmp
/usr
/var
Mounting all workload partition file systems.
x ./usr
x ./lib
x ./admin
x ./admin/tmp
x ./audit
x ./dev
x ./etc
x ./etc/check_config.files
x ./etc/consdef
x ./etc/cronlog.conf
x ./etc/csh.cshrc
x ./etc/csh.login
x ./etc/dlpi.conf
x ./etc/dumpdates
x ./etc/environment
x ./etc/ewlm
x ./etc/ewlm/limits
x ./etc/ewlm/trc
x ./etc/ewlm/trc/config_schema.xsd
x ./etc/ewlm/trc/output_schema.xsd
x ./etc/filesystems
x ./etc/group
x ./etc/inittab
x ./etc/magic
x ./etc/motd
x ./etc/nscontrol.conf
x ./etc/objrepos
x ./etc/objrepos/CDiagAtt
x ./etc/objrepos/CDiagAtt.vc
x ./etc/objrepos/CDiagDev
x ./etc/objrepos/Config_Rules
x ./etc/objrepos/CuAt
x ./etc/objrepos/CuAt.vc
x ./etc/objrepos/CuDep
x ./etc/objrepos/CuDv
x ./etc/objrepos/CuDvDr
x ./etc/objrepos/CuPath
x ./etc/objrepos/CuPath.vc
x ./etc/objrepos/CuPathAt
x ./etc/objrepos/CuPathAt.vc
x ./etc/objrepos/CuVPD
x ./etc/objrepos/CuData
x ./etc/objrepos/CuData.vc
x ./etc/objrepos/DAVars
x ./etc/objrepos/FRUB
x ./etc/objrepos/FRUB_SRC
x ./etc/objrepos/FRUs
x ./etc/objrepos/FRUs_src
x ./etc/objrepos/MenuGoal
x ./etc/objrepos/SRCextmeth
x ./etc/objrepos/SRCnotify
x ./etc/objrepos/SRCsubsvr
x ./etc/objrepos/SRCsubsys
x ./etc/objrepos/SWservAt
x ./etc/objrepos/SWservAt.vc
x ./etc/objrepos/TMInput
x ./etc/objrepos/errnotify
x ./etc/objrepos/history
x ./etc/objrepos/history.vc
x ./etc/objrepos/inventory
x ./etc/objrepos/inventory.vc
x ./etc/objrepos/lpp
x ./etc/objrepos/lpp.vc
x ./etc/objrepos/product
x ./etc/objrepos/product.vc
x ./etc/passwd
x ./etc/profile
x ./etc/project
x ./etc/project/projdef
x ./etc/pse.conf
x ./etc/pse_tune.conf
x ./etc/qconfig
x ./etc/rc
x ./etc/rc.C2
x ./etc/rc.CC
x ./etc/rc.dacinet
x ./etc/rc.d
x ./etc/rc.d/init.d
x ./etc/rc.d/rc
x ./etc/rc.d/rc2.d
x ./etc/rc.d/rc3.d
x ./etc/rc.d/rc4.d
x ./etc/rc.d/rc5.d
x ./etc/rc.d/rc6.d
x ./etc/rc.d/rc7.d
x ./etc/rc.d/rc8.d
x ./etc/rc.d/rc9.d
x ./etc/rc.ha_star
x ./etc/rc.powerfail
x ./etc/rc.security.boot
x ./etc/security
x ./etc/security/acl
x ./etc/security/audit
x ./etc/security/audit/bincmds
x ./etc/security/audit/config
x ./etc/security/audit/events
x ./etc/security/audit/objects
x ./etc/security/audit/streamcmds
x ./etc/security/authorizations
x ./etc/security/privcmds
x ./etc/security/privdevs
x ./etc/security/environ
x ./etc/security/group
x ./etc/security/lastlog
x ./etc/security/ldap
x ./etc/security/ldap/2307aixgroup.map
x ./etc/security/ldap/2307aixuser.map
x ./etc/security/ldap/2307group.map
x ./etc/security/ldap/2307user.map
x ./etc/security/ldap/aixgroup.map
x ./etc/security/ldap/aixid.map
x ./etc/security/ldap/aixuser.map
x ./etc/security/ldap/ldap.cfg
x ./etc/security/ldap/ldapid.ldif.template
x ./etc/security/ldap/nisSchema.ldif
x ./etc/security/ldap/proxy.ldif.template
x ./etc/security/ldap/sec.ldif
x ./etc/security/ldap/sectoldif.cfg
x ./etc/security/ldap/sfu20group.map
x ./etc/security/ldap/sfu20user.map
x ./etc/security/ldap/sfu30group.map
x ./etc/security/ldap/sfu30user.map
x ./etc/security/ldap/sfur2group.map
x ./etc/security/ldap/sfur2user.map
x ./etc/security/limits
x ./etc/security/login.cfg
x ./etc/security/passwd
x ./etc/security/portlog
x ./etc/security/priv
x ./etc/security/privfiles
x ./etc/security/.profile
x ./etc/security/pwdalg.cfg
x ./etc/security/roles
x ./etc/security/services
x ./etc/security/smitacl.group
x ./etc/security/smitacl.user
x ./etc/security/sysck.cfg
x ./etc/security/user
x ./etc/security/user.roles
x ./etc/shells
x ./etc/swapspaces
x ./etc/trcfmt.Z
x ./etc/tsh_profile
x ./etc/uucp
x ./etc/uucp/Devices
x ./etc/uucp/Dialers
x ./etc/vfs
x ./etc/vg
x ./etc/xtiso.conf
x ./etc/wlm
x ./etc/wlm/standard
x ./etc/wlm/current
x ./etc/wlm/standard/README
x ./etc/wlm/standard/classes
x ./etc/wlm/standard/limits
x ./etc/wlm/standard/shares
x ./etc/wlm/standard/rules
x ./etc/wlm/template
x ./etc/wlm/template/classes
x ./etc/wlm/template/limits
x ./etc/wlm/template/shares
x ./etc/wlm/template/rules
x ./etc/wlm/template/description
x ./u
x ./lost+found
x ./lpp
x ./mnt
x ./opt
x ./proc
x ./sbin
x ./sbin/comp.kext
x ./sbin/comp.uext
x ./sbin/comp.uext64
x ./sbin/rc.boot
x ./sbin/helpers
x ./sbin/helpers/v3fshelper
x ./sbin/helpers/udfmnthelp
x ./sbin/helpers/jfs2
x ./sbin/helpers/jfs2/backbyinode
x ./sbin/helpers/jfs2/chfs
x ./sbin/helpers/jfs2/chfs64
x ./sbin/helpers/jfs2/crfs
x ./sbin/helpers/jfs2/defragfs
x ./sbin/helpers/jfs2/diskusg
x ./sbin/helpers/jfs2/dumpfs
x ./sbin/helpers/jfs2/ff
x ./sbin/helpers/jfs2/fsck
x ./sbin/helpers/jfs2/fsck64
x ./sbin/helpers/jfs2/fscklog
x ./sbin/helpers/jfs2/fsdb
x ./sbin/helpers/jfs2/fstype
x ./sbin/helpers/jfs2/istat
x ./sbin/helpers/jfs2/logform
x ./sbin/helpers/jfs2/logredo
x ./sbin/helpers/jfs2/logredo64
x ./sbin/helpers/jfs2/lsfs
x ./sbin/helpers/jfs2/mkfs
x ./sbin/helpers/jfs2/mount
x ./sbin/helpers/jfs2/umount
x ./sbin/helpers/jfs2/ncheck
x ./sbin/helpers/jfs2/quotacheck
x ./sbin/helpers/jfs2/rdump
x ./sbin/helpers/jfs2/restbyinode
x ./sbin/helpers/jfs2/rollback
x ./sbin/helpers/jfs2/rrestore
x ./sbin/helpers/jfs2/snapshot
x ./sbin/helpers/jfs2/backsnap
x ./sbin/helpers/jfs2/statfs64
x ./tmp
x ./tmp/lost+found
x ./bin
x ./etc/drivers
x ./etc/methods
x ./etc/microcode
x ./etc/objrepos/DSMOptions
x ./etc/objrepos/DSMOptions.vc
x ./etc/objrepos/DSMenu
x ./etc/objrepos/PDiagRes
x ./etc/objrepos/PDiagRes.vc
x ./etc/objrepos/PDiagTask
x ./etc/objrepos/PDiagTask.vc
x ./etc/objrepos/PDiagAtt
x ./etc/objrepos/PDiagAtt.vc
x ./etc/objrepos/PDiagDev
x ./etc/objrepos/PDiagDev.vc
x ./etc/objrepos/PdAt
x ./etc/objrepos/PdAt.vc
x ./etc/objrepos/PdAtXtd
x ./etc/objrepos/PdAtXtd.vc
x ./etc/objrepos/PdCn
x ./etc/objrepos/PdDv
x ./etc/objrepos/PdDv.vc
x ./etc/objrepos/PdPathAt
x ./etc/objrepos/PdPathAt.vc
x ./etc/methods.cfg
x ./etc/security/mkuser.default
x ./etc/security/mkuser.sys
x ./etc/security/fpm
x ./etc/security/fpm/custom
x ./etc/security/fpm/custom/high
x ./etc/security/fpm/custom/med
x ./etc/security/fpm/custom/default
x ./etc/security/fpm/data
x ./etc/security/fpm/data/high_fpm_list
x ./etc/security/fpm/data/med_fpm_list
x ./etc/security/fpm/data/default_fpm_list.example
x ./etc/security/fpm/data/status_fpm
x ./etc/dtappintegrate
x ./etc/init
x ./var
x ./var/adm
x ./var/adm/cron
x ./var/adm/cron/at.deny
x ./var/adm/cron/cron.deny
x ./var/adm/cron/log
x ./var/adm/cron/queuedefs
x ./var/adm/ras
x ./var/adm/ras/raspertune
x ./var/adm/ras/codepoint.cat
x ./var/adm/ras/platform
x ./var/adm/streams
x ./var/adm/sw
x ./var/adm/sw/tmp
x ./var/adm/sw/tmp/bos.rte.ILS
x ./var/adm/sw/tmp/bos.rte.bind_cmds
x ./var/adm/sw/tmp/bos.rte.console
x ./var/adm/sw/tmp/bos.rte.date
x ./var/adm/sw/tmp/bos.rte.edit
x ./var/adm/sw/tmp/bos.rte.iconv
x ./var/adm/sw/tmp/bos.rte.install
x ./var/adm/sw/tmp/bos.rte.libc
x ./var/adm/sw/tmp/bos.rte.libcfg
x ./var/adm/sw/tmp/bos.rte.libcur
x ./var/adm/sw/tmp/bos.rte.libpthreads
x ./var/adm/sw/tmp/bos.rte.loc
x ./var/adm/sw/tmp/bos.rte.methods
x ./var/adm/sw/tmp/bos.rte.misc_cmds
x ./var/adm/sw/tmp/bos.rte.mlslib
x ./var/adm/sw/tmp/bos.rte.net
x ./var/adm/sw/tmp/bos.rte.odm
x ./var/adm/wtmp
x ./var/locks
x ./etc/locks
x ./var/lost+found
x ./var/msgs
x ./var/news
x ./var/preserve
x ./var/security/fpm
x ./var/security/fpm/log
x ./var/spool
x ./var/spool/cron
x ./var/spool/cron/atjobs
x ./var/spool/cron/crontabs
x ./var/spool/cron/crontabs/adm
x ./var/spool/cron/crontabs/root
x ./var/spool/cron/crontabs/sys
x ./var/spool/lpd
x ./var/spool/lpd/qdir
x ./var/spool/lpd/stat
x ./var/spool/mqueue
x ./var/spool/qdaemon
x ./var/spool/writesrv
x ./var/tmp
x ./etc/pam.conf
x ./etc/security/tsd
x ./etc/security/tsd/tsd.dat
x ./etc/security/certificates
x ./etc/security/certificates/certificate_610
x ./home
x ./home/guest
x ./home/lost+found
syncroot: Processing root part installation status.
syncroot: Synchronizing installp software.
+-----------------------------------------------------------------------------+
Pre-installation Verification...
+-----------------------------------------------------------------------------+
Verifying selections...done
Verifying requisites...done
Results...

SUCCESSES
---------
Filesets listed in this section passed pre-installation verification
and will be installed.

Selected Filesets
-----------------
Java5.sdk 5.0.0.130 # Java SDK 32-bit
Java5_64.sdk 5.0.0.150 # Java SDK 64-bit
Tivoli_Management_Agent.client.rte 3.7.1.0 # Management Framework Endpoin...
X11.Dt.ToolTalk 6.1.0.0 # AIX CDE ToolTalk Support
X11.Dt.bitmaps 6.1.0.0 # AIX CDE Bitmaps
X11.Dt.helpinfo 6.1.0.0 # AIX CDE Help Files and Volumes
X11.Dt.helpmin 6.1.0.0 # AIX CDE Minimum Help Files
X11.Dt.rte 6.1.0.0 # AIX Common Desktop Environme...
X11.apps.xdm 6.1.0.1 # AIXwindows xdm Application
X11.base.rte 6.1.0.1 # AIXwindows Runtime Environment
X11.base.smt 6.1.0.1 # AIXwindows Runtime Shared Me...
X11.help.EN_US.Dt.helpinfo 6.1.0.0 # AIX CDE Help Files and Volum...
X11.loc.DE_DE.Dt.rte 6.1.0.0 # CDE Locale Configuration - G...
X11.loc.ES_ES.Dt.rte 6.1.0.0 # CDE Locale Configuration - S...
X11.loc.FR_FR.Dt.rte 6.1.0.0 # CDE Locale Configuration - F...
X11.loc.IT_IT.Dt.rte 6.1.0.0 # CDE Locale Configuration - I...
X11.loc.JA_JP.Dt.rte 6.1.0.0 # CDE Locale Configuration - J...
X11.loc.Ja_JP.Dt.rte 6.1.0.0 # CDE Locale Configuration - J...
X11.loc.KO_KR.Dt.rte 6.1.0.0 # CDE Locale Configuration - K...
X11.loc.PT_PT.Dt.rte 6.1.0.0 # CDE Locale Configuration - P...
X11.loc.RU_RU.Dt.rte 6.1.0.0 # CDE Locale Configuration - R...
X11.loc.ZH_CN.Dt.rte 6.1.0.0 # CDE Locale Configuration - S...
X11.loc.ZH_HK.Dt.rte 6.1.0.0 # CDE Locale Config - Simplifi...
X11.loc.ZH_SG.Dt.rte 6.1.0.0 # CDE Locale Config - Simplifi...
X11.loc.ZH_TW.Dt.rte 6.1.0.0 # CDE Locale Configuration - T...
X11.loc.Zh_CN.Dt.rte 6.1.0.0 # CDE Locale Configuration - S...
X11.loc.Zh_TW.Dt.rte 6.1.0.0 # CDE Locale Configuration - T...
X11.loc.de_DE.Dt.rte 6.1.0.0 # CDE Locale Configuration - G...
X11.loc.en_US.Dt.rte 6.1.0.0 # CDE Locale Configuration - U...
X11.loc.fr_FR.Dt.rte 6.1.0.0 # CDE Locale Configuration - F...
X11.loc.it_IT.Dt.rte 6.1.0.0 # CDE Locale Configuration - I...
X11.loc.ja_JP.Dt.rte 6.1.0.0 # CDE Locale Configuration - J...
X11.loc.ko_KR.Dt.rte 6.1.0.0 # CDE Locale Configuration - K...
X11.loc.zh_CN.Dt.rte 6.1.0.0 # CDE Locale Configuration - S...
X11.loc.zh_TW.Dt.rte 6.1.0.0 # CDE Locale Configuration - T...
X11.samples.apps.clients 6.1.0.0 # AIXwindows Sample X Consorti...
bos.64bit 6.1.0.1 # Base Operating System 64 bit...
bos.acct 6.1.0.1 # Accounting Services
bos.adt.base 6.1.0.0 # Base Application Development...
bos.adt.insttools 6.1.0.0 # Tool to Create installp Pack...
bos.aixpert.cmds 6.1.0.1 # AIX Security Hardening
bos.cdmount 6.1.0.0 # CD/DVD Automount Facility
bos.compat.links 6.1.0.0 # AIX 3.2 to 4 Compatibility L...
bos.compat.net 6.1.0.0 # AIX 3.2 TCP/IP Compatability...
bos.compat.termcap 6.1.0.0 # AIX 3.2 Termcap Source and L...
bos.diag.com 6.1.0.0 # Common Hardware Diagnostics
bos.diag.rte 6.1.0.0 # Hardware Diagnostics
bos.diag.util 6.1.0.0 # Hardware Diagnostics Utilities
bos.ecc_client.rte 6.1.0.0 # Electronic Customer Care Run...
bos.mh 6.1.0.0 # Mail Handler
bos.mp64 6.1.0.1 # Base Operating System 64-bit...
bos.net.ipsec.keymgt 6.1.0.0 # IP Security Key Management
bos.net.ipsec.rte 6.1.0.0 # IP Security
bos.net.ncs 6.1.0.0 # Network Computing System 1.5.1
bos.net.nfs.client 6.1.0.1 # Network File System Client
bos.net.nis.client 6.1.0.0 # Network Information Service ...
bos.net.snapp 6.1.0.0 # System Networking Analysis a...
bos.net.tcp.client 6.1.0.1 # TCP/IP Client Support
bos.net.tcp.server 6.1.0.0 # TCP/IP Server
bos.net.tcp.smit 6.1.0.0 # TCP/IP SMIT Support
bos.net.uucp 6.1.0.0 # Unix to Unix Copy Program
bos.perf.diag_tool 6.1.0.0 # Performance Diagnostic Tool
bos.perf.libperfstat 6.1.0.0 # Performance Statistics Libra...
bos.perf.perfstat 6.1.0.0 # Performance Statistics Inter...
bos.perf.tools 6.1.0.1 # Base Performance Tools
bos.perf.tune 6.1.0.0 # Performance Tuning Support
bos.pmapi.pmsvcs 6.1.0.0 # Performance Monitor API Kern...
bos.pmapi.tools 6.1.0.0 # Performance Monitor API Tools
bos.rte.archive 6.1.0.1 # Archive Commands
bos.rte.boot 6.1.0.1 # Boot Commands
bos.rte.control 6.1.0.1 # System Control Commands
bos.rte.security 6.1.0.1 # Base Security Function
bos.rte.serv_aid 6.1.0.1 # Error Log Service Aids
bos.suma 6.1.0.0 # Service Update Management As...
bos.sysmgt.loginlic 6.1.0.0 # License Management
bos.sysmgt.nim.client 6.1.0.0 # Network Install Manager - Cl...
bos.sysmgt.quota 6.1.0.0 # Filesystem Quota Commands
bos.sysmgt.serv_aid 6.1.0.1 # Software Error Logging and D...
bos.sysmgt.smit 6.1.0.0 # System Management Interface ...
bos.sysmgt.sysbr 6.1.0.1 # System Backup and BOS Instal...
bos.sysmgt.trace 6.1.0.1 # Software Trace Service Aids
bos.wpars 6.1.0.1 # AIX Workload Partitions
csm.client 1.7.0.0 # Cluster Systems Management C...
csm.core 1.7.0.0 # Cluster Systems Management Core
csm.deploy 1.7.0.0 # Cluster Systems Management D...
csm.diagnostics 1.7.0.0 # Cluster Systems Management P...
csm.dsh 1.7.0.0 # Cluster Systems Management Dsh
devices.artic960.diag 6.1.0.0 # IBM ARTIC960 Adapter Diagnos...
devices.artic960.rte 6.1.0.0 # IBM ARTIC960 Runtime Support
devices.artic960.ucode 6.1.0.0 # IBM ARTIC960 Adapter Software
devices.chrp.IBM.lhca.rte 6.1.0.1 # Infiniband Logical HCA Runti...
devices.chrp.IBM.lhea.rte 6.1.0.0 # Host Ethernet Adapter (HEA) ...
devices.chrp.base.ServiceRM 1.4.0.0 # RSCT Service Resource Manager
devices.chrp.base.diag 6.1.0.1 # RISC CHRP Base System Device...
devices.chrp.base.rte 6.1.0.1 # RISC PC Base System Device S...
devices.chrp.pci.rte 6.1.0.0 # PCI Bus Software (CHRP)
devices.chrp.vdevice.rte 6.1.0.0 # Virtual I/O Bus Support
devices.common.IBM.atm.rte 6.1.0.0 # Common ATM Software
devices.common.IBM.crypt.rte 6.1.0.0 # Cryptographic Common Runtime...
devices.common.IBM.cx.rte 6.1.0.0 # CX Common Adapter Software
devices.common.IBM.ethernet.rte 6.1.0.0 # Common Ethernet Software
devices.common.IBM.fc.hba-api 6.1.0.0 # Common HBA API Library
devices.common.IBM.fc.rte 6.1.0.0 # Common IBM FC Software
devices.common.IBM.hdlc.sdlc 6.1.0.0 # SDLC COMIO Device Driver Emu...
devices.common.IBM.ib.rte 6.1.0.1 # Infiniband Common Runtime En...
devices.common.IBM.ide.rte 6.1.0.0 # Common IDE I/O Controller So...
devices.common.IBM.iscsi.rte 6.1.0.0 # Common iSCSI Files
devices.common.IBM.ktm_std.rte 6.1.0.0 # Common Keyboard, Tablet, and...
devices.common.IBM.mpio.rte 6.1.0.1 # MPIO Disk Path Control Module
devices.common.IBM.scsi.rte 6.1.0.0 # Common SCSI I/O Controller S...
devices.common.IBM.sissas.rte 6.1.0.0 # Common IBM SAS RAID Software
devices.common.IBM.usb.rte 6.1.0.0 # USB System Software
devices.fcp.disk.array.rte 6.1.0.0 # FC SCSI RAIDiant Array Devic...
devices.fcp.disk.rte 6.1.0.1 # FC SCSI CD-ROM, Disk, Read/W...
devices.fcp.tape.rte 6.1.0.0 # FC SCSI Tape Device Software
devices.graphics.com 6.1.0.0 # Graphics Adapter Common Soft...
devices.ide.cdrom.rte 6.1.0.0 # IDE CDROM Device Software
devices.ide.disk.rte 6.1.0.0 # IDE Disk Device Software
devices.isa_sio.chrp.ecp.rte 6.1.0.0 # CHRP IEEE1284 Parallel Port ...
devices.isa_sio.pnpPNP.501.rte 6.1.0.0 # CHRP Serial Adapter Software...
devices.iscsi_sw.rte 6.1.0.0 # iSCSI Software Device Driver
devices.pci.00105000.com 6.1.0.0 # Common SAS Expansion Card De...
devices.pci.02105e51.rte 6.1.0.1 # Native Display Adapter Softw...
devices.pci.13100560.rte 6.1.0.0 # PCI Audio Adapter (13100560)...
devices.pci.14100401.rte 6.1.0.0 # Gigabit Ethernet-SX PCI Adap...
devices.pci.14101403.rte 6.1.0.0 # Gigabit Ethernet-SX Adapter ...
devices.pci.14101b02.rte 6.1.0.0 # GXT6500P Graphics Adapter So...
devices.pci.14101c02.rte 6.1.0.0 # GXT4500P Graphics Adapter So...
devices.pci.14102e00.diag 6.1.0.0 # IBM PCI SCSI RAID Adapter Di...
devices.pci.14102e00.rte 6.1.0.0 # IBM PCI SCSI RAID Adapter De...
devices.pci.14103302.rte 6.1.0.0 # GXT135P Graphics Adapter Sof...
devices.pci.14103e00.rte 6.1.0.0 # IBM PCI Token-Ring Adapter S...
devices.pci.14104e00.rte 6.1.0.0 # PCI ATM Adapter (14104e00) S...
devices.pci.14104f00.rte 6.1.0.0 # PCI ATM Adapter (14104f00) S...
devices.pci.14105000.rte 6.1.0.0 # PCI ATM Adapter (14105000) S...
devices.pci.14105e01.rte 6.1.0.0 # 622Mbps ATM PCI Adapter Soft...
devices.pci.14106602.diag 6.1.0.0 # PCI-X Dual Channel SCSI Adap...
devices.pci.14106602.rte 6.1.0.0 # PCI-X Dual Channel SCSI Adap...
devices.pci.14106802.rte 6.1.0.0 # Gigabit Ethernet-SX PCI-X Ad...
devices.pci.14106902.rte 6.1.0.1 # 10/100/1000 Base-TX PCI-X Ad...
devices.pci.14106e01.rte 6.1.0.0 # GXT4000P Graphics Adapter So...
devices.pci.14107001.rte 6.1.0.0 # GXT6000P Graphics Adapter So...
devices.pci.14107802.diag 6.1.0.0 # PCI-X Dual Channel Ultra320 ...
devices.pci.14107802.rte 6.1.0.0 # PCI-X Dual Channel Ultra320 ...
devices.pci.14107c00.rte 6.1.0.0 # PCI ATM Adapter (14107c00) S...
devices.pci.14108802.rte 6.1.0.0 # 2-Port Gigabit Ethernet-SX P...
devices.pci.14108902.rte 6.1.0.0 # 2-Port 10/100/1000 Base-TX P...
devices.pci.14108c00.rte 6.1.0.0 # ARTIC960Hx 4-Port Selectable...
devices.pci.14109f00.rte 6.1.0.0 # IBM 4758 PCI Cryptographic C...
devices.pci.1410bb02.rte 6.1.0.0 # 10 Gigabit-LR Ethernet PCI-X...
devices.pci.1410d002.com 6.1.0.0 # Common PCI iSCSI TOE Adapter...
devices.pci.1410d002.rte 6.1.0.0 # 1000 Base-TX PCI-X iSCSI TOE...
devices.pci.1410e501.rte 6.1.0.0 # IBM PCI-X Cryptographic Copr...
devices.pci.1410e601.rte 6.1.0.0 # IBM Crypto Accelerator Adapt...
devices.pci.1410ec02.rte 6.1.0.0 # 10 Gigabit Ethernet-LR PCI-X...
devices.pci.1410ff01.rte 6.1.0.0 # 10/100 Mbps Ethernet PCI Ada...
devices.pci.22106474.rte 6.1.0.0 # USB Host Controller (2210647...
devices.pci.23100020.rte 6.1.0.0 # IBM PCI 10/100 Ethernet Adap...
devices.pci.2b102725.rte 6.1.0.0 # GXT145 Graphics Adapter Soft...
devices.pci.33103500.rte 6.1.0.0 # USB Host Controller (3310350...
devices.pci.331121b9.com 6.1.0.0 # IBM PCI 2-Port Multiprotocol...
devices.pci.331121b9.rte 6.1.0.0 # IBM PCI 2-Port Multiprotocol...
devices.pci.4f111100.rte 6.1.0.0 # PCI 8-Port Asynchronous Adap...
devices.pci.4f111b00.rte 6.1.0.0 # PCI 128-Port Asynchronous Ad...
devices.pci.4f11c800.rte 6.1.0.0 # 2-Port Asynchronous EIA-232 ...
devices.pci.77101223.com 6.1.0.0 # PCI FC Adapter (77101223) Co...
devices.pci.77102224.com 6.1.0.1 # PCI-X FC Adapter (77102224) ...
devices.pci.99172704.rte 6.1.0.0 # USB Host Controller (9917270...
devices.pci.ad100501.rte 6.1.0.0 # IDE Adapter Driver for Winbo...
devices.pci.b315445a.rte 6.1.0.0 # PCI 1x/4x Infiniband Device ...
devices.pci.c1110358.rte 6.1.0.0 # USB Host Controller (c111035...
devices.pci.df1000f7.com 6.1.0.1 # Common PCI FC Adapter Device...
devices.pci.df1000f7.diag 6.1.0.0 # PCI FC Adapter Device Diagno...
devices.pci.df1000f7.rte 6.1.0.0 # PCI FC Adapter Device Software
devices.pci.e414a816.rte 6.1.0.0 # Gigabit Ethernet-SX Adapter ...
devices.pciex.b3157862.rte 6.1.0.0 # PCIe-X 4x Infiniband Device ...
devices.sas.rte 6.1.0.0 # Serial Attached SCSI Device ...
devices.scsi.disk.rte 6.1.0.0 # SCSI CD-ROM, Disk, Read/Writ...
devices.scsi.safte.rte 6.1.0.0 # SCSI Accessed Fault-Tolerant...
devices.scsi.ses.rte 6.1.0.0 # SCSI Enclosure Device Software
devices.tty.rte 6.1.0.0 # TTY Device Driver Support So...
devices.usbif.010100.rte 6.1.0.0 # USB Audio Device Driver
devices.usbif.03000008.rte 6.1.0.0 # USB 3D Mouse Client Driver
devices.usbif.030101.rte 6.1.0.0 # USB Keyboard Client Driver
devices.usbif.030102.rte 6.1.0.0 # USB Mouse Client Driver
devices.vdevice.IBM.l-lan.rte 6.1.0.0 # Virtual I/O Ethernet Software
devices.vdevice.IBM.v-scsi.rte 6.1.0.1 # Virtual SCSI Client Support
devices.vdevice.hvterm1.rte 6.1.0.0 # Virtual Terminal Devices
devices.vdevice.vty-server.rte 6.1.0.0 # Virtual Terminal Devices
ibmdebugger 6.0.0.0 # IBM Debugger for AIX
ifor_ls.base.cli 6.1.0.0 # License Use Management Runti...
invscout.com 2.2.0.1 # Inventory Scout Microcode Ca...
invscout.ldb 2.2.0.2 # Inventory Scout Logic Database
invscout.rte 2.2.0.12 # Inventory Scout Runtime
lum.base.cli 5.1.2.0 # License Use Management Runti...
lwi.runtime 6.1.0.0 # Lightweight Infrastructure R...
openssh.base.client 4.3.0.5301 # Open Secure Shell Commands
openssh.base.server 4.3.0.5301 # Open Secure Shell Server
perfagent.tools 6.1.0.0 # Local Performance Analysis &...
printers.rte 6.1.0.0 # Printer Backend
rpm.rte 3.0.5.41 # RPM Package Manager
rsct.core.auditrm 2.5.0.0 # RSCT Audit Log Resource Manager
rsct.core.errm 2.5.0.0 # RSCT Event Response Resource...
rsct.core.fsrm 2.5.0.0 # RSCT File System Resource Ma...
rsct.core.hostrm 2.5.0.0 # RSCT Host Resource Manager
rsct.core.lprm 2.5.0.0 # RSCT Least Privilege Resourc...
rsct.core.rmc 2.5.0.0 # RSCT Resource Monitoring and...
rsct.core.sec 2.5.0.0 # RSCT Security
rsct.core.sensorrm 2.5.0.0 # RSCT Sensor Resource Manager
rsct.core.sr 2.5.0.0 # RSCT Registry
rsct.core.utils 2.5.0.0 # RSCT Utilities
sysmgt.websm.apps 6.1.0.1 # Web-based System Manager App...
sysmgt.websm.framework 6.1.0.0 # Web-based System Manager Cli...
sysmgt.websm.rte 6.1.0.0 # Web-based System Manager Run...
vac.C 9.0.0.0 # IBM XL C Compiler
vac.C 9.0.0.2 # IBM XL C Compiler
vacpp.cmp.core 9.0.0.0 # IBM XL C/C++ Compiler

<<>>

+-----------------------------------------------------------------------------+
BUILDDATE Verification ...
+-----------------------------------------------------------------------------+
Verifying build dates...done
FILESET STATISTICS
------------------
217 Selected to be installed, of which:
217 Passed pre-installation verification
----
217 Total to be installed

+-----------------------------------------------------------------------------+
Installing Software...
+-----------------------------------------------------------------------------+

installp: APPLYING software for:
Java5.sdk 5.0.0.130

Filesets processed: 1 of 217 (Total time: 1 secs).

installp: APPLYING software for:
Java5_64.sdk 5.0.0.150

Filesets processed: 2 of 217 (Total time: 1 secs).

installp: APPLYING software for:
Tivoli_Management_Agent.client.rte 3.7.1.0

Filesets processed: 3 of 217 (Total time: 1 secs).

installp: APPLYING software for:
X11.Dt.bitmaps 6.1.0.0
X11.Dt.helpinfo 6.1.0.0
X11.Dt.helpmin 6.1.0.0

Filesets processed: 6 of 217 (Total time: 1 secs).

installp: APPLYING software for:
X11.base.smt 6.1.0.1

Filesets processed: 7 of 217 (Total time: 1 secs).

installp: APPLYING software for:
X11.help.EN_US.Dt.helpinfo 6.1.0.0

Filesets processed: 8 of 217 (Total time: 1 secs).

installp: APPLYING software for:
bos.acct 6.1.0.1

Filesets processed: 9 of 217 (Total time: 2 secs).

installp: APPLYING software for:
bos.adt.base 6.1.0.0
bos.adt.insttools 6.1.0.0

Filesets processed: 11 of 217 (Total time: 2 secs).

installp: APPLYING software for:
bos.compat.links 6.1.0.0
bos.compat.net 6.1.0.0
bos.compat.termcap 6.1.0.0

/usr/sbin/inetimp: 0822-037 fopen failed on file /etc/services of access mode: r+, errno = 2.
Filesets processed: 14 of 217 (Total time: 2 secs).

installp: APPLYING software for:
bos.diag.util 6.1.0.0

Filesets processed: 15 of 217 (Total time: 2 secs).

installp: APPLYING software for:
bos.mh 6.1.0.0

Filesets processed: 16 of 217 (Total time: 2 secs).

installp: APPLYING software for:
bos.net.nis.client 6.1.0.0
bos.net.snapp 6.1.0.0
bos.net.tcp.smit 6.1.0.0
bos.net.uucp 6.1.0.0

rm: 0653-609 Cannot remove bos.net.snapp.unpre_i.
The file system has read permission only.
rm: 0653-609 Cannot remove bos.net.snapp.unpre_i.
The file system has read permission only.
Filesets processed: 20 of 217 (Total time: 3 secs).

installp: APPLYING software for:
bos.perf.diag_tool 6.1.0.0
bos.perf.libperfstat 6.1.0.0
bos.perf.perfstat 6.1.0.0
bos.perf.tools 6.1.0.1

Filesets processed: 24 of 217 (Total time: 3 secs).

installp: APPLYING software for:
bos.pmapi.pmsvcs 6.1.0.0
bos.pmapi.tools 6.1.0.0

Filesets processed: 26 of 217 (Total time: 4 secs).

installp: APPLYING software for:
bos.rte.archive 6.1.0.1

Filesets processed: 27 of 217 (Total time: 4 secs).

installp: APPLYING software for:
bos.rte.boot 6.1.0.1

Filesets processed: 28 of 217 (Total time: 4 secs).
Note :- Full output had not been showed here.....

+-----------------------------------------------------------------------------+
Summaries:
+-----------------------------------------------------------------------------+

Installation Summary
--------------------
Name Level Part Event Result
-------------------------------------------------------------------------------
Java5.sdk 5.0.0.130 ROOT APPLY SUCCESS
Java5_64.sdk 5.0.0.150 ROOT APPLY SUCCESS
Tivoli_Management_Agent.cli 3.7.1.0 ROOT APPLY SUCCESS
X11.Dt.bitmaps 6.1.0.0 ROOT APPLY SUCCESS
X11.Dt.helpinfo 6.1.0.0 ROOT APPLY SUCCESS
X11.Dt.helpmin 6.1.0.0 ROOT APPLY SUCCESS
X11.base.smt 6.1.0.1 ROOT APPLY SUCCESS
X11.help.EN_US.Dt.helpinfo 6.1.0.0 ROOT APPLY SUCCESS
bos.acct 6.1.0.1 ROOT APPLY SUCCESS
bos.adt.base 6.1.0.0 ROOT APPLY SUCCESS
bos.adt.insttools 6.1.0.0 ROOT APPLY SUCCESS
bos.compat.links 6.1.0.0 ROOT APPLY SUCCESS
bos.compat.net 6.1.0.0 ROOT APPLY SUCCESS
bos.compat.termcap 6.1.0.0 ROOT APPLY SUCCESS
bos.diag.util 6.1.0.0 ROOT APPLY SUCCESS
bos.mh 6.1.0.0 ROOT APPLY SUCCESS
bos.net.nis.client 6.1.0.0 ROOT APPLY SUCCESS
bos.net.snapp 6.1.0.0 ROOT APPLY SUCCESS
bos.net.tcp.smit 6.1.0.0 ROOT APPLY SUCCESS
bos.net.uucp 6.1.0.0 ROOT APPLY SUCCESS
bos.perf.diag_tool 6.1.0.0 ROOT APPLY SUCCESS
bos.perf.libperfstat 6.1.0.0 ROOT APPLY SUCCESS
bos.perf.perfstat 6.1.0.0 ROOT APPLY SUCCESS
bos.perf.tools 6.1.0.1 ROOT APPLY SUCCESS
bos.pmapi.pmsvcs 6.1.0.0 ROOT APPLY SUCCESS
bos.pmapi.tools 6.1.0.0 ROOT APPLY SUCCESS
bos.rte.archive 6.1.0.1 ROOT APPLY SUCCESS
bos.rte.boot 6.1.0.1 ROOT APPLY SUCCESS
bos.rte.control 6.1.0.1 ROOT APPLY SUCCESS
bos.rte.security 6.1.0.1 ROOT APPLY SUCCESS
bos.rte.serv_aid 6.1.0.1 ROOT APPLY SUCCESS
bos.sysmgt.loginlic 6.1.0.0 ROOT APPLY SUCCESS
bos.sysmgt.quota 6.1.0.0 ROOT APPLY SUCCESS
bos.sysmgt.serv_aid 6.1.0.1 ROOT APPLY SUCCESS
bos.sysmgt.smit 6.1.0.0 ROOT APPLY SUCCESS
bos.sysmgt.sysbr 6.1.0.1 ROOT APPLY SUCCESS
bos.sysmgt.trace 6.1.0.1 ROOT APPLY SUCCESS
bos.wpars 6.1.0.1 ROOT APPLY SUCCESS
csm.deploy 1.7.0.0 ROOT APPLY SUCCESS
csm.diagnostics 1.7.0.0 ROOT APPLY SUCCESS
csm.dsh 1.7.0.0 ROOT APPLY SUCCESS
devices.artic960.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.artic960.ucode 6.1.0.0 ROOT APPLY SUCCESS
devices.chrp.IBM.lhca.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.chrp.IBM.lhea.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.chrp.base.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.chrp.pci.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.chrp.vdevice.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.atm.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.crypt.rt 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.ethernet 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.fc.hba-a 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.fc.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.hdlc.sdl 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.ib.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.common.IBM.ide.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.iscsi.rt 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.ktm_std. 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.mpio.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.common.IBM.scsi.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.sissas.r 6.1.0.0 ROOT APPLY SUCCESS
devices.common.IBM.usb.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.fcp.disk.array.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.fcp.disk.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.fcp.tape.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.graphics.com 6.1.0.0 ROOT APPLY SUCCESS
devices.ide.cdrom.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.ide.disk.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.isa_sio.chrp.ecp.rt 6.1.0.0 ROOT APPLY SUCCESS
devices.isa_sio.pnpPNP.501. 6.1.0.0 ROOT APPLY SUCCESS
devices.iscsi_sw.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.00105000.com 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.02105e51.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.pci.13100560.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14100401.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14101403.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14101b02.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14101c02.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14102e00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14103302.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14103e00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14104e00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14104f00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14105000.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14105e01.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14106802.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14106902.rte 6.1.0.1 ROOT APPLY SUCCESS
devices.pci.14106e01.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14107001.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14107802.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14107c00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14108802.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14108902.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14108c00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14109f00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410bb02.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410d002.com 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410d002.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410e501.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410e601.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410ec02.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.1410ff01.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.22106474.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.23100020.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.2b102725.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.33103500.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.331121b9.com 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.331121b9.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.4f111100.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.4f111b00.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.4f11c800.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.77101223.com 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.77102224.com 6.1.0.1 ROOT APPLY SUCCESS
devices.pci.99172704.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.ad100501.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.b315445a.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.c1110358.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.df1000f7.com 6.1.0.1 ROOT APPLY SUCCESS
devices.pci.df1000f7.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.e414a816.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pciex.b3157862.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.sas.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.scsi.disk.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.scsi.safte.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.scsi.ses.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.tty.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.usbif.010100.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.usbif.03000008.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.usbif.030101.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.usbif.030102.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.vdevice.IBM.l-lan.r 6.1.0.0 ROOT APPLY SUCCESS
devices.vdevice.IBM.v-scsi. 6.1.0.1 ROOT APPLY SUCCESS
devices.vdevice.hvterm1.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.vdevice.vty-server. 6.1.0.0 ROOT APPLY SUCCESS
ibmdebugger 6.0.0.0 ROOT APPLY FAILED
ibmdebugger 6.0.0.0 ROOT CLEANUP SUCCESS
invscout.com 2.2.0.1 ROOT APPLY SUCCESS
invscout.ldb 2.2.0.2 ROOT APPLY SUCCESS
invscout.rte 2.2.0.12 ROOT APPLY SUCCESS
lwi.runtime 6.1.0.0 ROOT APPLY SUCCESS
openssh.base.client 4.3.0.5301 ROOT APPLY SUCCESS
openssh.base.server 4.3.0.5301 ROOT APPLY SUCCESS
printers.rte 6.1.0.0 ROOT APPLY SUCCESS
sysmgt.websm.apps 6.1.0.1 ROOT APPLY SUCCESS
sysmgt.websm.framework 6.1.0.0 ROOT APPLY SUCCESS
X11.base.rte 6.1.0.1 ROOT APPLY SUCCESS
bos.64bit 6.1.0.1 ROOT APPLY SUCCESS
bos.aixpert.cmds 6.1.0.1 ROOT APPLY SUCCESS
bos.cdmount 6.1.0.0 ROOT APPLY SUCCESS
bos.diag.com 6.1.0.0 ROOT APPLY SUCCESS
bos.diag.rte 6.1.0.0 ROOT APPLY SUCCESS
bos.mp64 6.1.0.1 ROOT APPLY SUCCESS
bos.net.ncs 6.1.0.0 ROOT APPLY SUCCESS
bos.net.tcp.client 6.1.0.1 ROOT APPLY SUCCESS
bos.net.tcp.server 6.1.0.0 ROOT APPLY SUCCESS
bos.perf.tune 6.1.0.0 ROOT APPLY SUCCESS
devices.artic960.diag 6.1.0.0 ROOT APPLY SUCCESS
devices.chrp.base.diag 6.1.0.1 ROOT APPLY SUCCESS
devices.common.IBM.cx.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14102e00.diag 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14106602.diag 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14106602.rte 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.14107802.diag 6.1.0.0 ROOT APPLY SUCCESS
devices.pci.df1000f7.diag 6.1.0.0 ROOT APPLY SUCCESS
perfagent.tools 6.1.0.0 ROOT APPLY SUCCESS
sysmgt.websm.rte 6.1.0.0 ROOT APPLY SUCCESS
vac.C 9.0.0.0 ROOT APPLY SUCCESS
vac.C 9.0.0.2 ROOT APPLY SUCCESS
X11.Dt.ToolTalk 6.1.0.0 ROOT APPLY SUCCESS
X11.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.apps.xdm 6.1.0.1 ROOT APPLY SUCCESS
X11.loc.DE_DE.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ES_ES.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.FR_FR.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.IT_IT.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.JA_JP.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.Ja_JP.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.KO_KR.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.PT_PT.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.RU_RU.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ZH_CN.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ZH_HK.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ZH_SG.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ZH_TW.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.Zh_CN.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.Zh_TW.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.de_DE.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.en_US.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.fr_FR.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.it_IT.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ja_JP.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.ko_KR.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.zh_CN.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.loc.zh_TW.Dt.rte 6.1.0.0 ROOT APPLY SUCCESS
X11.samples.apps.clients 6.1.0.0 ROOT APPLY SUCCESS
bos.net.ipsec.rte 6.1.0.0 ROOT APPLY SUCCESS
bos.net.nfs.client 6.1.0.1 ROOT APPLY SUCCESS
bos.sysmgt.nim.client 6.1.0.0 ROOT APPLY SUCCESS
bos.net.ipsec.keymgt 6.1.0.0 ROOT APPLY SUCCESS
ifor_ls.base.cli 6.1.0.0 ROOT APPLY SUCCESS
lum.base.cli 5.1.2.0 ROOT APPLY SUCCESS
rpm.rte 3.0.5.41 ROOT APPLY SUCCESS
rsct.core.utils 2.5.0.0 ROOT APPLY SUCCESS
bos.ecc_client.rte 6.1.0.0 ROOT APPLY SUCCESS
bos.suma 6.1.0.0 ROOT APPLY SUCCESS
csm.core 1.7.0.0 ROOT APPLY SUCCESS
rsct.core.sec 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.sr 2.5.0.0 ROOT APPLY SUCCESS
vacpp.cmp.core 9.0.0.0 ROOT APPLY SUCCESS
csm.client 1.7.0.0 ROOT APPLY SUCCESS
rsct.core.rmc 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.sensorrm 2.5.0.0 ROOT APPLY SUCCESS
devices.chrp.base.ServiceRM 1.4.0.0 ROOT APPLY SUCCESS
rsct.core.auditrm 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.errm 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.fsrm 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.hostrm 2.5.0.0 ROOT APPLY SUCCESS
rsct.core.lprm 2.5.0.0 ROOT APPLY SUCCESS
bos.rte.archive 6.1.0.1 ROOT COMMIT SUCCESS
bos.rte.boot 6.1.0.1 ROOT COMMIT SUCCESS
bos.rte.control 6.1.0.1 ROOT COMMIT SUCCESS
bos.rte.security 6.1.0.1 ROOT COMMIT SUCCESS
bos.rte.serv_aid 6.1.0.1 ROOT COMMIT SUCCESS
vac.C 9.0.0.2 ROOT COMMIT SUCCESS
syncroot: Error synchronizing installp software.
syncroot: Returns Status = FAILURE
Workload partition MyTestWpar4 created successfully.
mkwpar: 0960-390 To start the workload partition, execute the following as root: startwpar [-v] MyTestWpar4
lpar47p682e_pub[/] >



to start WPAR


lpar47p682e_pub[/] > startwpar -v MyTestWpar3
Starting workload partition MyTestWpar3.
Mounting all workload partition file systems.
Mounting /wpars/MyTestWpar3
Mounting /wpars/MyTestWpar3/home
Mounting /wpars/MyTestWpar3/opt
Mounting /wpars/MyTestWpar3/proc
Mounting /wpars/MyTestWpar3/tmp
Mounting /wpars/MyTestWpar3/usr
Mounting /wpars/MyTestWpar3/var
Loading workload partition.
$corral_t = {
'name' => 'MyTestWpar3',
'wlm_cpu' => [
undef,
undef,
undef,
undef
],
'path' => '/wpars/MyTestWpar3',
'hostname' => 'MyTestWpar3',
'wlm_procVirtMem' => [
-1,
undef
],
'wlm_mem' => [
undef,
undef,
undef,
undef
],
'key' => 5,
'vips' => [
[
'en0',
'172.29.138.24',
'255.255.192.0',
'172.29.191.255'
]
],
'wlm_rset' => undef,
'opts' => 4,
'id' => 0
};
Exporting workload partition devices.
Starting workload partition subsystem cor_MyTestWpar3.
0513-059 The cor_MyTestWpar3 Subsystem has been started. Subsystem PID is 536778.
Verifying workload partition startup.
Return Status = SUCCESS.
lpar47p682e_pub[/] >
-------------------------------------------------------
lpar47p682e_pub[/] > syncroot -i
syncroot: Processing root part installation status.
syncroot: Installp root packages are currently synchronized.
syncroot: Root part is currently synchronized.
syncroot: Returns Status = SUCCESS
------------------------------------------------------------

To synchronising all File set from global to WPAR syncroot command needs to executed.

Reference: http://santosh-aix.blogspot.com
 
|  AIX Advanced Interactive eXecutive. Blogger Template By Lawnydesignz Powered by Blogger