AIX 5.3 – Howto backup operating system to a bootable ISO image

aix

We would like to backup the AIX 5.3 IntelliStation at our company. Unfortunately it does not have a tapedrive nor a DVD-Writer. It only has a DVD-ROM drive.

The idea is to mount a directory via NFS and to create an ISO image there. Afterwards We would use a different machine to create a bootable DVD from the ISO image.

How can this be done? I have tried the mkdvd command from a smitty terminal, but it seems that mkdvd does not accept a filename, e.g. /nfsmount/aixbackup/system-image.iso.

Any help on this is very appreciated!

Best Answer

Mkdvd can be used for this.
It will take the rootvg (or a backup made with mksysb) and will write it on the specified device.

To create a bootable dvd, you can simply use the following:

mkdvd -d /dev/cd1

You should have a look at mkdvd, mksysb and savevg documentation before doing anything nasty on your server..

Related Topic