How To Install libbluray-doc on Kali Linux

In this tutorial we learn how to install libbluray-doc on Kali Linux. libbluray-doc is Blu-ray disc playback support library (documentation)

Introduction

In this tutorial we learn how to install libbluray-doc on Kali Linux.

What is libbluray-doc

libbluray-doc is:

libbluray is an open-source library designed for Blu-Ray Discs playback for media players, like VLC or MPlayer. This research project is developed by an international team of developers from Doom9. libbluray integrates navigation, playlist parsing, menus, and BD-J.

NB: Most commercial Blu-Ray are restricted by AACS or BD+ technologies and this library is not enough to playback those discs.

This package provides the libbluray documentation.

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

Install libbluray-doc Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libbluray-doc

Install libbluray-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libbluray-doc

Install libbluray-doc Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install libbluray-doc

How To Uninstall libbluray-doc on Kali Linux

To uninstall only the libbluray-doc package we can use the following command:

sudo apt-get remove libbluray-doc

Uninstall libbluray-doc And Its Dependencies

To uninstall libbluray-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libbluray-doc

Remove libbluray-doc Configurations and Data

To remove libbluray-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libbluray-doc

Remove libbluray-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libbluray-doc

Dependencies

libbluray-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install libbluray-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.