If you are wanting to build a current NetRestore 10.6.2 image with apple’s system image utility there are a couple things to watch out for.
1. Make sure you upgrade your server OS to 10.6.2 before building the image. The version os SIU included with 10.6.2 server has a number of required bug fixes that are necessary for installing the 10.6.2 updater.
2. The iTunes 9.0.2 package will start an instance of iTunesHelper that will prevent image creation from completing. If you kill this process the image creation will complete properly. You can either wait 40 minutes watching the log for the error or run this one liner to kill the bugger.
[code]while [ 1 ]; do killall iTunesHelper; sleep 10; done[/code]
Comments are closed