How To Install libbluray-bdj on Kali Linux
Introduction
In this tutorial we learn how to install libbluray-bdj
on Kali Linux.
What is libbluray-bdj
libbluray-bdj 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.
BD-J support is important because many of the advanced features and extra content in Blu-ray movies uses BD-J. Programs designed to provide support for those features must depend on this.
This package provides the BD-J library.
There are three methods to install libbluray-bdj
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-bdj 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-bdj
using apt-get
by running the following command:
sudo apt-get -y install libbluray-bdj
Install libbluray-bdj Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libbluray-bdj
using apt
by running the following command:
sudo apt -y install libbluray-bdj
Install libbluray-bdj 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-bdj
using aptitude
by running the following command:
sudo aptitude -y install libbluray-bdj
How To Uninstall libbluray-bdj on Kali Linux
To uninstall only the libbluray-bdj
package we can use the following command:
sudo apt-get remove libbluray-bdj
Uninstall libbluray-bdj And Its Dependencies
To uninstall libbluray-bdj
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libbluray-bdj
Remove libbluray-bdj Configurations and Data
To remove libbluray-bdj
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libbluray-bdj
Remove libbluray-bdj configuration, data, and all of its dependencies
We can use the following command to remove libbluray-bdj
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libbluray-bdj
Dependencies
libbluray-bdj have the following dependencies:
References
Summary
In this tutorial we learn how to install libbluray-bdj
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.