Introduction
In this tutorial we learn how to install alure-doc
on Kali Linux.
What is alure-doc
alure-doc is:
ALURE is a utility library to help manage common tasks with OpenAL
applications. This includes device enumeration and initialization, file
loading, and streaming.
Please enable JavaScript
The purpose of this library is to provide pre-made functionality that would
otherwise be repetitive or difficult to (re)code for various projects and
platforms, such as loading a sound file into an OpenAL buffer and streaming an
audio file through a buffer queue. Support for different formats is consistant
across platforms, so no special checks are needed when loading files, and all
formats are handled through the same API.
Currently ALURE includes a basic .wav and .aif file reader, and can leverage
external libraries such as libSndFile (for extended wave formats and several
others), VorbisFile (for Ogg Vorbis), and FLAC (for FLAC and Ogg FLAC), and
others. External libraries can also be dynamically loaded at run-time, or
individually disabled outright at compile time.
This package installs the ALURE documentation.
There are three methods to install alure-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 alure-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 alure-doc
using apt-get
by running the following command:
sudo apt-get -y install alure-doc
Install alure-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install alure-doc
using apt
by running the following command:
sudo apt -y install alure-doc
Install alure-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 alure-doc
using aptitude
by running the following command:
sudo aptitude -y install alure-doc
How To Uninstall alure-doc on Kali Linux
To uninstall only the alure-doc
package we can use the following command:
sudo apt-get remove alure-doc
Uninstall alure-doc And Its Dependencies
To uninstall alure-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove alure-doc
Remove alure-doc Configurations and Data
To remove alure-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge alure-doc
Remove alure-doc configuration, data, and all of its dependencies
We can use the following command to remove alure-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge alure-doc
Dependencies
alure-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install alure-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.