How to burn ISO files to CD-RW/DVD-RW in Linux
List the devices to write with:
After running this command, match the "dev=NUM,NUM,NUM" with the next command to make sure your are writing the ISO with the correct device.
List the devices to write with:
cdrecord -scanbus
After running this command, match the "dev=NUM,NUM,NUM" with the next command to make sure your are writing the ISO with the correct device.
cdrecord -v -pad speed=1 dev=0,0,0 FILE.iso
-v - verbose(shows my information)
-pad speed=1 - change the write speed
dev=0,0,0 - this is your device
-pad speed=1 - change the write speed
dev=0,0,0 - this is your device