I would like to read raw bytes from an Audio CD. For other optical formats like UDF or ISO 9660 I simply use:
$ cat /dev/cdrom | xxd -a | head
But with Audio CD it produces an error:
$ cat /dev/cdrom | xxd -a | head
cat: cdrom: Input/output error
I tried with various Audio CDs, using dd, cat /dev/cdrom > cd.img but it didn't work. The idea was to have a sense of the internal structure of the Compact Disc standard.
OS: Ubuntu. But I could use Windows or Mac if there works.