clacker
Group: Members
Posts: 570
Joined: June 2004 |
|
Posted: Sep. 02 2004,03:00 |
|
meo, here is what I did for 0.8.0 that worked (it drove me nuts, but clivesay saved the day with the last line). You need to copy the boot & lost+found directories to the new cd, as well as the index.html file. Also the -b and -c files have changed in the final mkisofs command, in addition to a boat load more switches to worry about:
mkdir source mkdir newcd mkdir newcd/KNOPPIX cp -Rp /cdrom/boot newcd cp -Rp /cdrom/lost+found newcd cp -p /cdrom/index.html newcd cp -Rp /KNOPPIX source
<do any fiddling with the KNOPPIX directory here. Add files, chroot and use dpkg, whatever>
mkisofs -R source/KNOPPIX | create_compressed_fs - 65536 > newcd/KNOPPIX/KNOPPIX mkisofs -no-pad -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o mydsl.iso newcd
I think in that create_compressed_fs command, you can use the -b (best) switch if you want. It makes the iso image smaller.
|