Handbrake and protected DVDs
Last modified on July 24, 2026 • 2 min read • 307 wordsRipping DVDs is a thing of the past, but occasionally I still need to do it.
sg_raw /dev/sr0 EA 00 00 00 00 00 01If you have Handbrake installed from the default Ubuntu repository, you need to remove it (it’s crippled and you want to be able to use it also with encrypted DVDs):(sudo apt remove handbrake && sudo apt autoremove)Install this version:sudo add-apt-repository ppa:stebbins/handbrake-releasessudo apt updatesudo apt install handbrake-gtk handbrake-cliInstall software to read encrypted DVDs:sudo apt-get install libdvd-pkgHowever, you have to execute some manual commands after the install is ready, but the installer instructs you during installation.Select as source the TS_Audio folder on the DVD. If the scan never finishes or you do not see any tracks after the scan finishes, you might need something like MakeMKV. I didn’t find any PPA or deb file, so I compiled it from source, which succeeded without any problems following the isntructions from here:
http://www.makemkv.com/forum2/viewtopic.php?f=3&t=224
. Here the short version:wget http://www.makemkv.com/download/makemkv-bin-1.10.4.tar.gzwget http://www.makemkv.com/download/makemkv-oss-1.10.4.tar.gztar -xvzf makemkv-bin-1.10.4.tar.gztar -xvzf makemkv-oss-1.10.4.tar.gz cd makemkv-oss-1.10.4/./configuremakesudo make installcd ../makemkv-bin-1.10.4/makesudo make installThe executable is /usr/bin/makemkv