Found this here... you will need mkisofs I don't know if this script will work, but it was in this post.
http://groups.google.com/groups?hl=en&lr=lang_en&ie=UTF-8&safe=off&th=aaff172deb0a173d&rnum=4 Here are a few scripts that might help: To create an ISO image from a directory: -----cut----- #!/bin/sh DIRECTORY=`echo "$1/" | cut -d "/" -f1` echo Creating ISO image called "$DIRECTORY".iso... mkisofs -R -J -l "$1" > "$DIRECTORY.iso" ----end cut--- Just make it executable and run it like this: ./makeiso directory where directory is where you have your files you want to put on CD. This will make an iso with the name directory.iso Adam J. Melancon _________________________________________________________________ Join the worlds largest e-mail service with MSN Hotmail. http://www.hotmail.com
