Did you ever figure this out? I had similar experience, but eventually found a resolution. First, I tried following the instructions on the community Ubuntu help pages related to CD ripping. Either I couldn't follow the instructions correctly or they were just too outdated and wouldn't work on my box. I'm running 12.04 LTS, btw.
After many hours spent searching and reading, I successfully followed the instructions in post #3 on here, summarized below:
Install dependencies by typing in the terminal:
$ sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain
Run each of these commands, one after the other (note, in the fourth one down, replace admin with whatever your username is on your linux box, assuming you have admin privileges):
$ sudo apt-get install libgettext-ruby1.8 make
$ cd /usr/local/src
$ ls -ld .
$ sudo chgrp admin .
$ sudo chmod g+w .
$ wget http://rubyripper.googlecode.com/files/rubyripper-0.6.0.tar.bz2
$ sha1sum rubyripper-0.6.0.tar.bz2
$ tar xvjf rubyripper-0.6.0.tar.bz2
$ cd rubyripper-0.6.0
$ ./configure --enable-lang-all --enable-gtk2 --enable-cli --prefix=/usr/local
$ sudo make install
Note, on my first attempt at following these instructions, I got stuck on the last step ($ sudo make install
) because the previous step failed to create the make files, which happened because I did not replace "admin" with "scott" in step 4, which meant that my privileges weren't set up properly. To fix that, I had to delete the rubyripper-0.6.0 directory and the tar.bz2 file, redo step 4 with the proper group name of "scott" instead of "admin," and then redo the rest of the steps. When I did step 4 correctly, everything else worked as expected and I was able to finally launch rubyripper (I prefer using the GUI versus the CLI, so I invoke $ rrip_gui
).
Let me know if you get stuck trying these steps and I will try to help you out.
saucy-getdeb games
instead. – david6 Apr 23 '14 at 07:51