How To Install deepin-deb-installer on Kali Linux
Introduction
In this tutorial we learn how to install deepin-deb-installer on Kali Linux.
What is deepin-deb-installer
deepin-deb-installer is:
Deepin Package Manager is a management tool for deb package, and is developed for users to easily install customized applications that are not categorized in Deepin Store. With an easy-to-use interface as well as functions like batch installation, version detection and auto-completion of dependencies, you can quickly get the software installed on deepin once you get the right deb package.
This package is part of DDE (Deepin Desktop Environment).
There are three methods to install deepin-deb-installer 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-deb-installer Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install deepin-deb-installer using apt-get by running the following command:
sudo apt-get -y install deepin-deb-installerInstall deepin-deb-installer Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install deepin-deb-installer using apt by running the following command:
sudo apt -y install deepin-deb-installerInstall deepin-deb-installer 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-deb-installer using aptitude by running the following command:
sudo aptitude -y install deepin-deb-installerHow To Uninstall deepin-deb-installer on Kali Linux
To uninstall only the deepin-deb-installer package we can use the following command:
sudo apt-get remove deepin-deb-installerUninstall deepin-deb-installer And Its Dependencies
To uninstall deepin-deb-installer and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove deepin-deb-installerRemove deepin-deb-installer Configurations and Data
To remove deepin-deb-installer configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge deepin-deb-installerRemove deepin-deb-installer configuration, data, and all of its dependencies
We can use the following command to remove deepin-deb-installer configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge deepin-deb-installerDependencies
deepin-deb-installer have the following dependencies:
- libqapt3-runtime
- libc6
- libdtkcore5
- libdtkgui5
- libdtkwidget5
- libgcc-s1
- libqapt3
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5widgets5
- libstdc++6
References
Summary
In this tutorial we learn how to install deepin-deb-installer package on Kali Linux using different package management tools: apt, apt-get and aptitude.