this post was submitted on 30 Dec 2025
11 points (100.0% liked)

Asklemmy

53983 readers
300 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 7 years ago
MODERATORS
 

I have an audio disc that I want to produce a one to one ISO of (it has some marks).

When I try to use "ddrescue" to copy it, I get the following error message. ddrescue: /dev/sr0: Unaligned read error. Is sector size correct?.

What am I doing wrong? I would assume "ddrescue" would automatically figure out the sector size.

To note, I want to use "ddrescue" because "abcde" keeps hitting read errors on the disk.

Edit:

Seems that "ddrescue" does not support audio discs (https://unix.stackexchange.com/a/558628).

And "abcde" already uses "cdda paranoia".

top 7 comments
sorted by: hot top controversial new old
[–] CondorWonder@lemmy.ca 5 points 3 months ago (1 children)

ddrescue doesn’t work properly on audio discs (even if you use the correct sector size of 2048 bytes). Have you tried something like cdparanoia https://www.xiph.org/paranoia/?

[–] doomsdayrs@lemmy.ml 2 points 3 months ago

Am using "cdparanoia" (through "abcde") now.

[–] angband@lemmy.world 5 points 3 months ago

audio cds are not a block format, they are a stream. dd works on block devices, where it can request blocks sequentially from the drive. audio cds can only be positioned by track, and even have to be oversampled to correct for jitter: https://www.cdroller.com/htm/readaudio.html

[–] f4f4f4f4f4f4f4f4@sopuli.xyz 2 points 3 months ago

I've had success even on damaged discs with Exact Audio Copy on Windows, or fre:ac on Linux. Paranoia mode (or secure mode) is going to take a long time. It could be worth ripping with the fast burst mode and see if you can hear the errors/skips.

[–] bruhbeans@lemmy.ml 1 points 3 months ago (2 children)

Because audio CDs get written the opposite way to data CDs. I forget which is which but one gets written outside-in and the other inside-out.

[–] f4f4f4f4f4f4f4f4@sopuli.xyz 1 points 3 months ago

That's not right; both audio and data discs are burned and read inside to outside, which is the opposite of vinyl records.

[–] doomsdayrs@lemmy.ml 1 points 3 months ago* (last edited 3 months ago)

Passing "--reverse" to "ddrescue" does not help, leading to the same error message. πŸ™