Installing Rubyripper on Ubuntu 8.04



Rubyripper is a digital audio extraction algorithm that uses cdparanoia in a sophisticated way to make sure that a CD rip is done successfully and accurately. It is very similar to and inspired by EAC. Rubyripper is written in the ruby programming language.

How is Rubyripper different from other CD rippers?

This differs from programs like K3b and Sound Juicer because it is much more thorough. Rubyripper rips each audio track at least twice, then compares each rip for differences and attempts to make the most accurate compilation of rips it possibly can. The result? Higher quality CD rips.

Installation

1. First, let's make sure that all the dependancies to Rubyripper are met. There are several packages that Rubyripper depends on that need to be installed prior to installing Rubyripper. Let's install these packages by opening up the terminal and typing

sudo aptitude install cd-discid cdparanoia ruby ruby-pkg-tools libgettext-ruby1.8 libgtk2-ruby

This command should install all the packages you need to run Rubyripper

2. Next, download the Rubyripper, version 0.5.0 here, on the official Rubyripper site.

3. Extract the files in the Rubyripper archive. You can either do this either through the GUI or through CLI:

* GUI: Right click on the file you just downloaded and select the "Extract Here" option.

* CLI: Open up the terminal, navigate to the directory where you downloaded Rubyripper, and run

tar xjvf rubyripper-0.5.0.tar.bz2

4. From here on out, it will be CLI only, so keep that terminal open!

5. In the terminal, navigate to the file you just extracted using cd. For example, if you extracted the file to your desktop, then you would write

cd /home/USERNAME/Desktop

6. Next, we'll tell Rubyripper what features we want to be installed. Copy and paste the following into the terminal:

./configure --enable-lang-all --enable-gtk2 --enable-cli --prefix=/usr

The above installs the GUI and CLI options, along with all the language support available. This is the recommended and most complete way to configure Rubyripper.

7. Finally, run

sudo make install

to finish the installation.

Rubyripper should now be in Applications -> Sound & Video.

Uninstallation

If you find you are unhappy with Rubyripper, for whatever reason, uninstalling is a snap.

1. First, you basically replicate Step 4 from the Installation process: open up your terminal again and navigate back to the directory you extracted in Step 3.

2. Next, run the following command to uninstall Rubyripper:

sudo make uninstall

3. Finally, run the following command to clean up all files left by Rubyripper:

sudo make clean




0 comments: