Original Question:
I’m in the process of making a bootable Tru64 5.1a cd with my backup software
located in its var directory. I tarred the contents of the CD onto a disk and used
the mkisofs command to make the bootable CD. Then I ftped the file (.cdfs file) onto
my windows machine which has the burner (I’m using nero). However, it is
unsuccessful. Below is the command I’m using:
# mkisofs -D -R -d –o -b /build_disk/dunix.cdfs /cdimage
Are my steps logical--what am I doing wrong? Thanks in advance.
Vishu
=================================================
Thanks to:
McCracken, Denise
Skulley, William
Bjorck, Olle (HP Services)
Adametz, Bluejay
Denise and Olle gave almost identical replies and their suggestion worked
flawlessly; however for grins I added the –b switch to the mkisofs command. Thanks.
Reply:
Maybe this will help. It's from my notes.
>
> mount -r /dev/rz#c /mnt
> cd /mnt
> tar cvf - . | ( cd /BootCd ; tar xvf - )
>
> Make the changes that you want to make down the /BootCd tree
>
> Make an iso image of the tree by
> mkisofs -R -D -a -o /somewhere/bootcd.iso /BootCd
>
> Make the iso image bootable by
> disklabel -w -t cdfs -f /somewhere/bootcd.iso
> echo "\0\c" | dd bs=1024k conv=sync >>/somewhere/bootcd.iso
>
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
Received on Fri Jan 03 2003 - 14:57:25 NZDT