If you have cdrecord installed, then the procedure for burning an ISO image under Linux is rather simple. One line at a command prompt.
cdrecord dev=0,1,0 speed=8 -v -v <filename.iso>
Rather straight forward really, The dev = is the device on the SCSI bus your SCSI or emulated IDE recorder is located. for SCSI devices, it's usually like 6,0 or something like that depending where yours is located. For IDE, like mine, run cdrecord -scanbus to determine where your device is located. The speed= is the burn speed. The -v -v is to increment the verbose level by one...not really sure yet why this is needed. Then the last part is the filename of the ISO. So, in my case of wanting to burn the Slackware 8 ISO images:
cdrecord dev=0,1,0 speed=8 -v -v install.iso
cdrecord dev=0,1,0 speed=8 -v -v extra.iso
Any questions, you know where to post em.
cdrecord dev=0,1,0 speed=8 -v -v <filename.iso>
Rather straight forward really, The dev = is the device on the SCSI bus your SCSI or emulated IDE recorder is located. for SCSI devices, it's usually like 6,0 or something like that depending where yours is located. For IDE, like mine, run cdrecord -scanbus to determine where your device is located. The speed= is the burn speed. The -v -v is to increment the verbose level by one...not really sure yet why this is needed. Then the last part is the filename of the ISO. So, in my case of wanting to burn the Slackware 8 ISO images:
cdrecord dev=0,1,0 speed=8 -v -v install.iso
cdrecord dev=0,1,0 speed=8 -v -v extra.iso
Any questions, you know where to post em.
