Originally posted by: hwyguy
My recommendation would be to create the mksysb on your source system (the system you want to back up), and also create the DVD image on the source system. FTP the DVD image to a host with a DVD-RW drive and burn the image from there. I've only tried burning an image on an AIX host with burn_cd but you might also be able to burn it on a Windows host using a Burn-ISO image option, the only caveat is that you'd have to rename the file to .iso.
Here's a quick overview on the steps involved. For example purposes, the source system is hostA and the host with the DVD writer will be host B. Both systems are AIX hosts.
Note, you can create the mksysb and DVD image in one step with the mkdvd command, but I haven't had as much success restoring the DVD that way. Also, it really dosen't take that much more time.
Also note that I'm doing this via command line for all commands, but it may be easier for some admins to use 'smitty mksysb' and 'smitty mkdvd' instead. burn_cd is a command line ONLY
Host A 1.) Create the mksysb:
mksysb -i -X /directory/mksysb.file
2.) Create the DVD Image with the new mksysb. Note, you'll need at least 1-2 GB each in /dvd1 and /dvd2, DVD1 is more of a temp space, while the final image is placed in /dvd2. mkdvd can create these filesystems for you if you like, just specify which volume group you would like to create them in with the -V flag:
/usr/sbin/mkcd -L -m /directory/mksysb.file -C /dvd1/ -I /dvd2 -V rootvg -R -S
3.) After the dvd is created, cd to /dvd2 . You should see a file named cd_image_XXXXXX where XXXXXX is a sequence number. Feel free to rename this as you wish. This is your ISO DVD Image, ready for burning
4.) FTP the cd_image_XXXXXX to your AIX host which contains the DVD writer
Host B 1.) Run the command burn_cd -d /dev/cd0 /directory/dvdimagename
This part will take the longest, sometimes over an hour. After the burning is complete, you now have your own mksysb on DVD! Enjoy!
Let me know if you have any questions.
Thanks!