I want to make a copy of a DVD with Brasero. But it asks for libdvdcss.so.2.
I already did what was suggested at How should I install libdvdcss.so.2 (Library) to Ubuntu 16.04
But it didn't work.
I want to make a copy of a DVD with Brasero. But it asks for libdvdcss.so.2.
I already did what was suggested at How should I install libdvdcss.so.2 (Library) to Ubuntu 16.04
But it didn't work.
This worked for me
Try (this may not be needed for Ubuntu 20.04)
sudo apt install libdvdread4
Do
sudo apt install libdvdnav4 gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly libdvd-pkg
sudo dpkg-reconfigure libdvd-pkg
sudo apt install ubuntu-restricted-extras
After that I was able to copy the DVD with brasero.
sudo apt install libdvdnav4 gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly libdvd-pkg
sudo dpkg-reconfigure libdvd-pkg
sudo apt install ubuntu-restricted-extras
To do the above without user interaction, add -y
after each apt install
and --frontend=noninteractive
after pkg-reconfigure
.
Note libdvdread4
is unavailable in Ubuntu 20.04, but seems unneeded.
libdvdread7
now. – Tully Dec 12 '20 at 20:27libdvdread4
(or 7 on Focal) is not enough. The packagelibdvd-pkg
(it's included also in the first line under Do above, so the commands under Do work. – OndroMih Dec 25 '20 at 21:20