As I don't have a jumpstart system either, I think this might be the best approach for me as well... I can use the old b60 install to make the modified b62.
Thanks, Malachi On 4/24/07, mario heimel <[EMAIL PROTECTED]> wrote:
hi brain, in the following blueprint you will find the way to make the dvd bootable. http://www.sun.com/blueprints/0806/819-7546.pdf Step 1: Copy the DVD to Writable Disk The process of copying the DVD to writable disk is relatively straightforward. You need enough space on the target disk to store the copy (~3GB for the Solaris 10 1/06 OS release). You just use cpio or tar to perform the copy. Begin by mounting the DVD, either using vold or by manually mounting it. # mount -F hsfs -o ro /dev/dsk/c1t0d0p0 /mnt # lofiadm -a `pwd`/sol-10-u1-ga-x86-dvd.iso /dev/lofi/1 # mount -F hsfs -o ro /dev/lofi/1 /mnt # mkdir /var/tmp/dvd # cd /mnt # find . -depth -print | cpio -pdm /var/tmp/dvd 6539088 blocks # cd /; umount /mnt ; lofiadm -d /dev/lofi/1 Add the ZFS Root-Install-Patch to the dvd in /var/tmp/dvd! Step 4: Recreate the ISO Image When all customizations are complete in the miniroot and /var/tmp/dvd, you simply run mkisofs to recreate the ISO image. The mkisofs command has the following syntax: # /usr/bin/mkisofs -d -D -J -l -r -U \ -relaxed-filenames \ -b boot/grub/stage2_eltorito \ -no-emul-boot \ -boot-load-size 4 \ -boot-info-table \ -c .catalog \ -V "my_volume_name" \ -o output.iso \ /var/tmp/dvd greets This message posted from opensolaris.org _______________________________________________ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss
_______________________________________________ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss