ThorneLabs

Linux DVD Ripping with dvdbackup

• Updated October 23, 2018


dvdbackup has been one of the simplest programs I have used to backup DVDs on Linux distributions.

The following steps will install the dvdbackup RPM based package and compile libdvdcss, to decrypt the DVDs, from source.

Repository Packages Required

sudo yum install dvdbackup

libdvdcss Source Install

If the DVD you are ripping is encrypted, libdvdcss is required so dvdbackup can decrypt and access the media files.

Install the following repository packages:

sudo yum install git autoconf automake libtool

Clone the source code:

git clone http://code.videolan.org/videolan/libdvdcss.git

cd libdvdcss

Configure, make, and make install the binary:

autoreconf -i
./configure
make
sudo make install

Create links to the libdvdcss shared libraries:

sudo -i
echo '/usr/local/lib' > /etc/ld.so.conf.d/libdvdcss.conf
ldconfig -v

Backup Full DVD

Replace $DEVICE with your DVD drive path (e.g. /dev/dvd, /dev/sr0)

dvdbackup -i $DEVICE -M

If you found this post useful and would like to help support this site - and get something for yourself - sign up for any of the services listed below through the provided affiliate links. I will receive a referral payment from any of the services you sign-up for.

Get faster shipping and more with Amazon Prime: About to order something from Amazon but want to get more value out of the money you would normally pay for shipping? Sign-up for a free 30-day trial of Amazon Prime to get free two-day shipping, access to thousands of movies and TV shows, and more.

Thanks for reading and take care.