Re: Making a custom FreeBSD iso

2005-06-18 Thread Wojciech Puchar
Im ripping the iso image from the cd with dd dd if=/dev/acd0 of=file.iso bs=2048 Then, Im mounting the iso image mdconfig -a -t vnode -f /usr/iso-orig/file.iso -u 0 mount -t cd9660 /dev/md0 /iso ..and copying its contents to disk with cp -R tar cf - .|(cd /newdir;tar xpf -) would be

Re: Making a custom FreeBSD iso

2005-06-18 Thread Giorgos Keramidas
On 2005-06-18 21:12, Wojciech Puchar [EMAIL PROTECTED] wrote: Im ripping the iso image from the cd with dd dd if=/dev/acd0 of=file.iso bs=2048 Then, Im mounting the iso image mdconfig -a -t vnode -f /usr/iso-orig/file.iso -u 0 mount -t cd9660 /dev/md0 /iso ..and copying its contents to

Making a custom FreeBSD iso

2005-06-17 Thread Chris Huff
Hi: Im trying to get a couple of scripts of mine onto a bootable FreeBSD 5.4 install cd. Im going about this as follows. Im ripping the iso image from the cd with dd dd if=/dev/acd0 of=file.iso bs=2048 Then, Im mounting the iso image mdconfig -a -t vnode -f /usr/iso-orig/file.iso -u 0

Re: Making a custom FreeBSD iso

2005-06-17 Thread Frank Staals
Chris Huff wrote: Hi: Im trying to get a couple of scripts of mine onto a bootable FreeBSD 5.4 install cd. Im going about this as follows. Im ripping the iso image from the cd with dd dd if=/dev/acd0 of=file.iso bs=2048 Then, Im mounting the iso image mdconfig -a -t vnode -f