Originally posted by: dwaddle
Most likely yes. If AIX would recognize the disks at install time, then it should recognize them during a mksysb restore. The cfgmgr (or something quite similar) is run during bootup from a bootable mksysb.
But, if your drives are completely mirrored ("lsvg -l rootvg" shows 2x as many PPs as LPs for each LV, and the value in the 'PV' column is >1) and your drives are hot swappable, then there's no reason to bother with a mksysb reinstall.
AIX's LVM is very flexible in situations such a this. You should be able to use LVM to accomplish this without a reinstall or an outage. The steps below highlight the procedure, and the AIX documentation covers it in detail when covering how to swap out a failed hard drive. In this case, the drive is not failed, but the steps are appropriate.
(1) Break the mirror from hdisk1 using 'rmlvcopy' for each LV in the system
(2) Remove hdisk1 from the rootvg using 'reducevg'
(3) Remove the hdisk1 device using 'rmdev'
(4) Swap the drive from a 18G to a 72G (using the diag Hot Plug action if appropriate)
(5) Run cfgmgr to add the 'new' hdisk1 device
(6) Use 'extendvg' to bring the new hdisk1 back into rootvg
(7) Re-mirror everything on hdisk0 to hdisk1 using mklvcopy and syncvg
(8) Run 'bosboot -a' to rebuild the boot sector on hdisk1
(9) Repeat actions above to replace hdisk0
If your system has HDD slots free on the same SCSI bus(es) as your existing rootvg drives, it would work just as well to install the new drives first and mirror onto them, then remove the mirror from the old HDDs. Doing it this way reduces the chances of a single drive failure killing you in the brief time everything is unmirrored.