1

I'm facing problems for ripping Audio CD, and found a patch in a forum than maybe fixes it. But don't know to apply it.

cdparanoia patch

Thanks in advance

Roots
  • 77
  • You would have to download the source code for cdparanoia, install any necessary libraries required for compilation, apply the patch to the source code, and compile it into a binary. This is over the heads of most beginners; maybe you could try posting your issue with ripping CDs as a question on this site to see if there's a simpler answer. – Nick Weinberg Sep 08 '16 at 15:55
  • Thanks for you reply. I already posted the problem days ago, but I get no responses: http://askubuntu.com/questions/821280/morituri-error-ripping-the-last-track-of-any-cd I'm following this instructions and want to test if works: https://github.com/thomasvs/morituri/issues/36 – Roots Sep 08 '16 at 16:07

1 Answers1

3

You need to get the source of cdparanoia and apply the patch to cdparanoia.1 file.

I've tried to use the patch and I think it was failing for an absence of newline at the end. I added one and the patch was successful. Get the modified patch from this github gist

cdparanoia uses svn. So, if your patch file is saved as changes.patch and you're in a directory where cdparanoia.1 file resides, you'll do

patch -p0 < changes.patch

After applying the patch, you need to compile the whole software. There is a README file instructing the process. Basically it is executing these commands sequentially

./configure
make
sudo make install
Anwar
  • 76,649