in reply to OT: minicpan CDROM case sensitivity problem
If I remember correctly mkisofs -J makes a Joliet compatable CD on Linux. Think that should be what you need. If you use a GUI to burn the CD you will have to see if you can pass parameters when you make the iso.
To create the CD on the command line you will want somthing like this ...
have a look at man mkisofs and man cdrecord* Creating an iso image mkisofs -J -o cd_image.iso /dir/to/burn/as/root * Find you CD device cdrecord --scanbus * Burning iso image (use dev = found with scanbus) cdrecord -v dev=0,0,0 speed=4 -data cd_image.iso * Burning data on the fly mkisofs -J /dir/to/burn/as/root | cdrecord -v dev=0,0,0 speed=4 + -data -
Cheers,
R.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: OT: minicpan CDROM case sensitivity problem
by rinceWind (Monsignor) on Jan 25, 2006 at 15:46 UTC |