June 01, 2005
Curious George: Too many files, can't burn a DVD.
I'm doing data archival and there are 15,000 files in my directory. All of them must be put on the DVD. Nero Express's "Select Files" menu grinds to a halt because it can't populate the list with so many files. Is there a different DVD data authoring program for Windows that might be slick enough to not get bogged down by something silly like this? Does anyone make a command-line burner? Thanks, fellow monkeys.
mkisofs -r -J -udf -o IMAGE_NAME.ISO /PATH/TO/FILE/SET/
This will make an ISO image (change the name IMAGE_NAME.ISO to what ever you want) that will use "rational" Rockridge, Microsoft Joilet, and also a UDF file system that you should be able to burn to DVD using Nero. The UDF support in mkisofs is currently an overlay to the Joilet file system. The Rockridge support will allow most non-windows systems to read the disc, too. You can omit this (-r switch) if you only plan to use it with Windows machines. You might be able to add Macintosh HFS support if you need to, but I've never done that so I can't help you there. You can take a look at the manual page for mkisofs to get an idea of what is required if you need to change anything. Hopefully that will work for you.