dvd+rw-mediainfo /dev/sr0 | grep "Write speed"
cdrecord -prcap dev=/dev/sr0 | grep "Write speed"
mkisofs -o my_disc.iso -udf -iso-level 3 -J -R -V "REPLACE-DISC-LABEL" /path/to/files
(Use -iso-level 3
to allow files larger than 2 GiB to be included in the ISO.)
growisofs -Z /dev/sr0=my_disc.iso -speed=2
cdrecord -v speed=8 dev=/dev/sr0 -data -eject -pad my_disc.iso
dvdisaster -c -i /dev/sr0
(This checks for errors and maps bad sectors on the disc.)
readom dev=/dev/sr0 f=/dev/null
(Reads the entire disc without copying files to ensure itβs fully readable.)
dd if=/dev/sr0 of=read_from_disc.iso bs=4M status=progress
md5sum my_disc.iso read_from_disc.iso
(Reads disc and generates ISO, then compare with original ISO that was burned.)
dvd+rw-mediainfo /dev/sr0 | grep "Write speed"
cdrecord -atip dev=/dev/sr0
(Displays detailed information about CD media, including supported write speeds.)
isoinfo -d -i /dev/sr0
(Displays the disc's ISO 9660 structure and metadata, including volume labels and file system.)