How To Install deepin-music on Kali Linux
Introduction
In this tutorial we learn how to install deepin-music on Kali Linux.
What is deepin-music
deepin-music is:
Deepin-UI based, GStreamer front-end, with features likes search music by pinyin, quanpin, colorful lyrics supports, and more powerful functions you will found.
This package is part of DDE (Deepin Desktop Environment).
There are three methods to install deepin-music 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 deepin-music Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install deepin-music using apt-get by running the following command:
sudo apt-get -y install deepin-musicInstall deepin-music Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install deepin-music using apt by running the following command:
sudo apt -y install deepin-musicInstall deepin-music 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 deepin-music using aptitude by running the following command:
sudo aptitude -y install deepin-musicHow To Uninstall deepin-music on Kali Linux
To uninstall only the deepin-music package we can use the following command:
sudo apt-get remove deepin-musicUninstall deepin-music And Its Dependencies
To uninstall deepin-music and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove deepin-musicRemove deepin-music Configurations and Data
To remove deepin-music configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge deepin-musicRemove deepin-music configuration, data, and all of its dependencies
We can use the following command to remove deepin-music configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge deepin-musicDependencies
deepin-music have the following dependencies:
- gstreamer1.0-libav
- gstreamer1.0-plugins-bad
- gstreamer1.0-plugins-base
- gstreamer1.0-plugins-good
- gstreamer1.0-plugins-ugly
- gstreamer1.0-pulseaudio
- libglib2.0-bin
- libqt5multimedia5-plugins
- libqt5sql5-sqlite
- vlc-plugin-base
- libavcodec58
References
Summary
In this tutorial we learn how to install deepin-music package on Kali Linux using different package management tools: apt, apt-get and aptitude.