Hi, Debian's simpleburn depends among others on cdrskin. If it asks for cdrecord, then it has not been properly adapted to this dependency.
A simple workaround would be to create a symbolic link sudo ln -s /usr/bin/cdrskin /usr/bin/cdrecord cdrskin understands many cdrecord options as of year 2006. It has capabilities and options added for DVD and BD. If you need all CD burning features of cdrecord (at the expense of DVD and BD burning), then install wodim and use it as cdrecord: sudo ln -s /usr/bin/wodim /usr/bin/cdrecord wodim understands all cdrecord options as of year 2006. The only occasion in https://sources.debian.org/src/simpleburn/1.8.0-1/src/simpleburn.sh/ where this might be neccessary is in line 204: cdrecord -v -eject speed=$WRITESPEED gracetime=3 dev=$device -audio -pad -useinfo -text *.wav This expects for any X.wav file a file X.inf with CD-TEXT info. cdrskin will ignore this option. wodim will try to obey. The .inf files are probably created by runs of cdda2wav in simpleburn.sh. For them you need wodim's companion icedax and create a link sudo ln -s /usr/bin/icedax /usr/bin/cdda2wav ---------------------------------------------------------------------- The simpleburn package urgently needs a patch to adapt to cdrskin or wodim instead of cdrecord and to icedax instead of cdda2wav. It should also be checked whether other cdrtools programs need to be replaced by cdrkit programs. It should be quite easy for an end user to adapt simpleburn.sh to the programs of cdrkit (wodim, icedax, ...). cdrskin would be of interest only if you plan to burn DVD or BD media and if simpleburn is prepared to handle these media types at all. The difference between adapted and not adapted script would constitute a patch that should be added to the packages debian/patches directory. https://sources.debian.org/src/simpleburn/1.8.0-1/debian/patches/ Have a nice day :) Thomas