How To Install libroar-plugins-universal on Kali Linux
Introduction
In this tutorial we learn how to install libroar-plugins-universal on Kali Linux.
What is libroar-plugins-universal
libroar-plugins-universal is:
This is a collection of host application independent plugins for libroar. Host application independent plugins are plugins which can be loaded in all host applications (e.g. roard, roarpluginrunner and roarplaylistd).
This collection also includes plugins helpful for debugging the plugin interface of applications using libroar’s plugin interface.
There are three methods to install libroar-plugins-universal 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 libroar-plugins-universal Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libroar-plugins-universal using apt-get by running the following command:
sudo apt-get -y install libroar-plugins-universalInstall libroar-plugins-universal Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libroar-plugins-universal using apt by running the following command:
sudo apt -y install libroar-plugins-universalInstall libroar-plugins-universal 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 libroar-plugins-universal using aptitude by running the following command:
sudo aptitude -y install libroar-plugins-universalHow To Uninstall libroar-plugins-universal on Kali Linux
To uninstall only the libroar-plugins-universal package we can use the following command:
sudo apt-get remove libroar-plugins-universalUninstall libroar-plugins-universal And Its Dependencies
To uninstall libroar-plugins-universal and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libroar-plugins-universalRemove libroar-plugins-universal Configurations and Data
To remove libroar-plugins-universal configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libroar-plugins-universalRemove libroar-plugins-universal configuration, data, and all of its dependencies
We can use the following command to remove libroar-plugins-universal configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libroar-plugins-universalDependencies
libroar-plugins-universal have the following dependencies:
References
Summary
In this tutorial we learn how to install libroar-plugins-universal package on Kali Linux using different package management tools: apt, apt-get and aptitude.