I want to make a copy of a DVD with Brasero. But it asks for libdvdcss.so.2
first i tried this: “sudo apt install libdvdread4”
but it says: “libdvdread4 is already the newest version (6.0.1-1).”
Then i tried this but doesn’t work: https://www.videolan.org/developers/libdvdcss.html
but the second step: “sudo dpkg-reconfigure libdvd-pkg”
its says: “dpkg-query: package ‘libdvd-pkg’ is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files”
i have no clue what i am doing, i am a newby with this linux stuff.
and running the FIRST TWO sudo commands listed. You’ll notice that the file you are installing is not libdvdread4, but in fact a different file name. You can’t configure libdvd-pkg if you don’t do the first part.
Don’t worry about the git checkout angle, that’s for installing from source code.
If this doesn’t work out for you, do some searching on line on installing libdvdcss. Tell the search engine that you’re running Debian, since PureOS is a Debian fork.
Wrestling with Linux to get stuff installed is usually a little bit annoying, but seldom fatal.
-> sudo apt install libdvd-pkg
Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Unable to locate package libdvd-pkg
-> sudo dpkg-reconfigure libdvd-pkg
dpkg-query: package ‘libdvd-pkg’ is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files.
/usr/sbin/dpkg-reconfigure: libdvd-pkg is not installed
The libdvd-pkg is not in the normally-enabled (main) Debian repositories. You’ll need to add the contrib repository to your package manager sources. One way that you can do this is by running echo "deb https://deb.debian.org/debian $(lsb_release -rs) contrib" | sudo tee -a /etc/apt/sources.list > /dev/null, which will add the contrib repository to your apt sources. Then run sudo apt update then you should be able to install libdvd-pkg.
Note that the above command might not work on PureOS, I’m not sure how they set up the release names.
The other thing you could do is pull down the tarball at: https://download.videolan.org/pub/libdvdcss/ . You’ll want the 1.4.2 version I believe. Then unzip it, and use dpkg to install it instead of apt.