How To Install ncmpcpp on Kali Linux
Introduction
In this tutorial we learn how to install ncmpcpp on Kali Linux.
What is ncmpcpp
ncmpcpp is:
ncmpcpp is almost an exact clone of ncmpc which is a text-mode client for MPD, the Music Player Daemon. It provides a keyboard oriented and consistent interface to MPD and contains some new features ncmpc doesn’t have. It’s been also rewritten from scratch in C++.
New features include:
- tag editor;
- playlists editor;
- easy to use search screen;
- media library screen;
- lyrics screen;
- possibility of going to any position in currently playing track without rewinding/fastforwarding;
- multi colored main window (if you want);
- songs can be added to playlist more than once;
- a lot of minor useful functions.
There are three methods to install ncmpcpp 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 ncmpcpp Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ncmpcpp using apt-get by running the following command:
sudo apt-get -y install ncmpcppInstall ncmpcpp Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ncmpcpp using apt by running the following command:
sudo apt -y install ncmpcppInstall ncmpcpp 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 ncmpcpp using aptitude by running the following command:
sudo aptitude -y install ncmpcppHow To Uninstall ncmpcpp on Kali Linux
To uninstall only the ncmpcpp package we can use the following command:
sudo apt-get remove ncmpcppUninstall ncmpcpp And Its Dependencies
To uninstall ncmpcpp and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ncmpcppRemove ncmpcpp Configurations and Data
To remove ncmpcpp configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ncmpcppRemove ncmpcpp configuration, data, and all of its dependencies
We can use the following command to remove ncmpcpp configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ncmpcppDependencies
ncmpcpp have the following dependencies:
- libboost-filesystem1.74.0
- libboost-locale1.74.0
- libboost-program-options1.74.0
- libboost-regex1.74.0-icu67
- libboost-thread1.74.0
- libc6
- libcurl3-gnutls
- libfftw3-double3
- libgcc-s1
- libicu67
- libmpdclient2
- libncursesw6
- libreadline8
- libstdc++6
- libtag1v5
- libtinfo6
References
Summary
In this tutorial we learn how to install ncmpcpp package on Kali Linux using different package management tools: apt, apt-get and aptitude.