The CD started playing, and I was able to copy the tracks to my computer. However, I am not able to access the burner with Xfburn or Brasero. I am using an external DVD drive with write capabilities through USB. When I run 'cdrskin -v dev=/dev/sr0 -toc', I get 'cdrskin: status 2 BURN_DISC_EMPTY "There is no disc at all in the drive"'. The external drive is new, but it seems to need a lot of attention to get going. I'm in the cdrom group. The facl says I have rw.
Sent with ProtonMail Secure Email. ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ On Friday, December 24, 2021 7:12 PM, Thomas Schmitt <scdbac...@gmx.net> wrote: > Hi, > > Kete wrote: > > > > cdparanoia is "Unable to open disc." > > The source search offers me two occasions > https://codesearch.debian.net/search?q=package%3Acdparanoia+Unable+to+open+disc > If there is really no text "Is there an audio CD in the drive?", > then it's > https://sources.debian.org/src/cdparanoia/3.10.2+debian-14/main.c/?hl=1041#L1041 > I.e. cdda_open() did not return one of {0, -2 ... -6}. > The "cdda" in the function name indicates that this function looks for > CD-DA audio tracks, in contrast to CD-ROM data tracks. > > Dan Ritter wrote: > > > Some file browsers mix the two, and present CD audio tracks as > > though they were files. They aren't, really. > > Indeed. > > > 1. What kind of disc are you using? > > To determine the CD track structure, put it into the drive (/dev/sr0 if > it is the only CD capable drive of the computer) and do: > > cdrskin dev=/dev/sr0 -minfo > > which should report for CD-DA tracks something like: > > Track Sess Type Start Addr End Addr Size > > ================================================================================================================================================================================================================================================================ > > 1 1 Audio 0 3289 3290 > 2 1 Audio 3290 6350 3061 > 3 1 Audio 6351 7643 1293 > > > and for a CD-ROM track something like: > > Track Sess Type Start Addr End Addr Size > > =================================================================================== > > 1 1 Data 0 172027 172028 > > > With > > wodim dev=/dev/sr0 -toc > > it looks a bit more cryptic. > CD-DA is "control" 4: > > track: 1 lba: 0 ( 0) 00:02:00 adr: 1 control: 0 mode: -1 > track: 2 lba: 3290 ( 13160) 00:45:65 adr: 1 control: 0 mode: -1 > track: 3 lba: 6351 ( 25404) 01:26:51 adr: 1 control: 0 mode: -1 > > CD-ROM is "control" 0: > > track: 1 lba: 0 ( 0) 00:02:00 adr: 1 control: 4 mode: 1 > > Have a nice day :) > > Thomas