How To Install goobox on Kali Linux
Introduction
In this tutorial we learn how to install goobox on Kali Linux.
What is goobox
goobox is:
Goobox is an CD player and ripper for the GNOME 3 environment. It follows the “Just Works” principle so its interface is beautiful and easy-to-use.
It uses GNOME/GTK+ for its user interface, GStreamer framework for CD playing, and ripping operations, musicbrainz for CD indexing, and Google to search for album cover images.
There are three methods to install goobox 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 goobox Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install goobox using apt-get by running the following command:
sudo apt-get -y install gooboxInstall goobox Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install goobox using apt by running the following command:
sudo apt -y install gooboxInstall goobox 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 goobox using aptitude by running the following command:
sudo aptitude -y install gooboxHow To Uninstall goobox on Kali Linux
To uninstall only the goobox package we can use the following command:
sudo apt-get remove gooboxUninstall goobox And Its Dependencies
To uninstall goobox and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gooboxRemove goobox Configurations and Data
To remove goobox configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gooboxRemove goobox configuration, data, and all of its dependencies
We can use the following command to remove goobox configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gooboxDependencies
goobox have the following dependencies:
- libbrasero-media3-1
- libc6
- libcoverart1
- libdiscid0
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgstreamer1.0-0
- libgtk-3-0
- libmusicbrainz5-2
- libpango-1.0-0
- dconf-gsettings-backend
- gstreamer1.0-plugins-base
- gstreamer1.0-plugins-good
References
Summary
In this tutorial we learn how to install goobox package on Kali Linux using different package management tools: apt, apt-get and aptitude.