bootableCD - Instructions for making a bootable CD for LTC

Requires latest ltc-*.tgz and mkisofs 

1. Create a NFS server configuration and test with a client floppy.
2. Make a directory to hold the files for the CD image (ex. cd-image)
3. Copy the needed directories to that dir:
		cp -a /bin /cd-image
		cp -a /sbin /cd-image
		cp -a /lib /cd-image
		cp -a /usr /cd-image
		cp -a /opt /cd-image
4. Combine all the *.lrp files you need into the root.lrp. The CD boot image
	is unavailable for the LRP procedures when they try to copy the extra 
	packages.
		mkdir /cdtmp
		cd /cdtmp
		tar xvzf /ltc/root.lrp
		tar xvzf /ltc/modules.lrp
		< repeat for any other packages >
		tar cvzf /ltc/root.lrp .[A-z]* *					/* this picks up . files
5. Modify syslinux.cfg to remove the LRP=<packages> argument.
6. Make a clean LTC client disk with no config files:
		syslinux a:
		mcopy syslinux.cfg a:
		mcopy syslinux.dpy a:
		mcopy linux a:
		mcopy root.lrp a:
7. Create a boot image from the floppy:
		dd if=/dev/fd0 of=/cd-image/ltc.img
8. Run mkisofs to create a CD image file (ex. ltc-cd.iso):
		mkisofs -a -r -l -D -b ltc.img -c boot.catalog -o ltc-cd.iso /cd-image
9. Burn the ltc-cd.iso image onto a CD-R, and boot with it. It should give you
	a menu from which you can create a LTC client diskette (dd's the ltc.img to
	the floppy), or you can just configure the LTC with a DOS floppy in the A 
	drive (the floppy will not be bootable, it only has text config files).

Problems or bugs in this procedure ?
e-mail me at dheltzel@locke.ccil.org
