How To Install daisy-player on Kali Linux
Introduction
In this tutorial we learn how to install daisy-player on Kali Linux.
What is daisy-player
daisy-player is:
Daisy-player is a command-line player for talking books based on the Digital Accessible Information System protocol. It is comparable in functionality, features, and ease of use with commercial players, and has a simple user interface appropriate for Braille terminals.
There are three methods to install daisy-player 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 daisy-player Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install daisy-player using apt-get by running the following command:
sudo apt-get -y install daisy-playerInstall daisy-player Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install daisy-player using apt by running the following command:
sudo apt -y install daisy-playerInstall daisy-player 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 updateAfter updating apt database, We can install daisy-player using aptitude by running the following command:
sudo aptitude -y install daisy-playerHow To Uninstall daisy-player on Kali Linux
To uninstall only the daisy-player package we can use the following command:
sudo apt-get remove daisy-playerUninstall daisy-player And Its Dependencies
To uninstall daisy-player and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove daisy-playerRemove daisy-player Configurations and Data
To remove daisy-player configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge daisy-playerRemove daisy-player configuration, data, and all of its dependencies
We can use the following command to remove daisy-player configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge daisy-playerDependencies
daisy-player have the following dependencies:
- libsox-fmt-mp3
- libsox-fmt-pulse
- udisks2
- unar
- libc6
- libcdio-cdda2
- libcdio-paranoia2
- libcdio19
- libmad0
- libmagic1
- libncursesw6
- libpulse0
- libsox3
- libtinfo6
- libxml2
References
Summary
In this tutorial we learn how to install daisy-player package on Kali Linux using different package management tools: apt, apt-get and aptitude.