Talk:Ripping DVDs on Ubuntu Linux: Difference between revisions

From Free Knowledge Base- The DUCK Project
Jump to navigation Jump to search
Created page with "== other sources == * http://www.cyberciti.biz/tips/linux-dvd-ripper-software.html"
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


* http://www.cyberciti.biz/tips/linux-dvd-ripper-software.html
* http://www.cyberciti.biz/tips/linux-dvd-ripper-software.html
== repositories  ==
Ubuntu 14.04 doesn't provide libdvdcss in repositories so you need to add vlc ppa to the sources.list so you can download it.
sudo rm /etc/apt/sources.list.d/medibuntu.list
curl ftp://ftp.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add -
echo "deb ftp://ftp.videolan.org/pub/debian/stable ./" | sudo tee /etc/apt/sources.list.d/libdvdcss.list
sudo apt-get update
sudo apt-get install libdvdcss2
== extra repositories no longer necessary ==
Before you had to
sudo apt-add-repository 'deb http://download.videolan.org/pub/debian/stable/ /' && wget -O - http://download.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install libdvdcss2
Now you dont need to add the videolan repository and do it manually.  The package libdvdread4 now includes a script that downloads and installs libdvdcss2 for you.

Latest revision as of 16:41, 14 November 2015

other sources

repositories

Ubuntu 14.04 doesn't provide libdvdcss in repositories so you need to add vlc ppa to the sources.list so you can download it.

sudo rm /etc/apt/sources.list.d/medibuntu.list
curl ftp://ftp.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add -
echo "deb ftp://ftp.videolan.org/pub/debian/stable ./" | sudo tee /etc/apt/sources.list.d/libdvdcss.list
sudo apt-get update
sudo apt-get install libdvdcss2

extra repositories no longer necessary

Before you had to

sudo apt-add-repository 'deb http://download.videolan.org/pub/debian/stable/ /' && wget -O - http://download.videolan.org/pub/debian/videolan-apt.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install libdvdcss2

Now you dont need to add the videolan repository and do it manually. The package libdvdread4 now includes a script that downloads and installs libdvdcss2 for you.