How To Install dumphd on Ubuntu 20.04

In this tutorial we learn how to install dumphd on Ubuntu 20.04. dumphd is HD-DVD/Blu-Ray decrypter

Introduction

In this tutorial we learn how to install dumphd on Ubuntu 20.04.

What is dumphd

dumphd is:

Decrypt HD DVD and Blu-ray movies and store on your HDD. o Dual-Core supported decryption of EVO / M2TS files (for harddisk to o harddisk speed records ;o)) o Support for every pack type of an EVO (including in-place decryption of o ADV_PCKs, excluding Sequence Key Sections) o Decryption of every ARF protection type o Multiple files (currently CLI only) or complete disc mode o Usage of a key database to get the decryption keys or direct retrieval of o the keys off the source disc o Supports HD-DVDs for Standard / Advanced Content (but not both on the same o disc), Blu-Ray ROM BDMV o Experimental Blu-Ray Recordable support (with multiple CPS Units, BDMV, o BDAV with Aux Directories and Thumbnails) o Automatic BD+ removal using the BDVM Debugger or manually by supplying a o correct Conversion Table (currently CLI only) o Streaming output of EVO / M2TS files to stdout o Very much console output for free ;o) o GUI

There are three methods to install dumphd on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install dumphd Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install dumphd using apt-get by running the following command:

sudo apt-get -y install dumphd

Install dumphd Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install dumphd using apt by running the following command:

sudo apt -y install dumphd

Install dumphd Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install dumphd using aptitude by running the following command:

sudo aptitude -y install dumphd

How To Uninstall dumphd on Ubuntu 20.04

To uninstall only the dumphd package we can use the following command:

sudo apt-get remove dumphd

Uninstall dumphd And Its Dependencies

To uninstall dumphd and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove dumphd

Remove dumphd Configurations and Data

To remove dumphd configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge dumphd

Remove dumphd configuration, data, and all of its dependencies

We can use the following command to remove dumphd configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge dumphd

References

Summary

In this tutorial we learn how to install dumphd package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.