How To Install dde-qt5integration on Kali Linux
Introduction
In this tutorial we learn how to install dde-qt5integration on Kali Linux.
What is dde-qt5integration
dde-qt5integration is:
Deepin’s qt5integration provides library plugins used by Deepin application and Deepin Desktop Environment. It implements many extra features on top of stock Qt, include hijacking window decoration / shadow painting, better support for cursors under HiDPI, retrieval of full list of windows under current workspace, support for window of arbitrary shape with anti-aliasing and so on, to make Qt5 application and Deepin Desktop Environment more user-friendly.
This package is part of DDE (Deepin Desktop Environment).
There are three methods to install dde-qt5integration 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 dde-qt5integration Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install dde-qt5integration using apt-get by running the following command:
sudo apt-get -y install dde-qt5integrationInstall dde-qt5integration Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install dde-qt5integration using apt by running the following command:
sudo apt -y install dde-qt5integrationInstall dde-qt5integration 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 dde-qt5integration using aptitude by running the following command:
sudo aptitude -y install dde-qt5integrationHow To Uninstall dde-qt5integration on Kali Linux
To uninstall only the dde-qt5integration package we can use the following command:
sudo apt-get remove dde-qt5integrationUninstall dde-qt5integration And Its Dependencies
To uninstall dde-qt5integration and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dde-qt5integrationRemove dde-qt5integration Configurations and Data
To remove dde-qt5integration configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dde-qt5integrationRemove dde-qt5integration configuration, data, and all of its dependencies
We can use the following command to remove dde-qt5integration configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dde-qt5integrationDependencies
dde-qt5integration have the following dependencies:
- dde-qt5xcb-plugin
- libc6
- libdtkcore5
- libdtkgui5
- libdtkwidget5
- libgcc-s1
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5widgets5
- libqt5x11extras5
- libqt5xdg3
- libqt5xdgiconloader3
- libstdc++6
- libx11-6
- qtbase-abi-5-15-2
References
Summary
In this tutorial we learn how to install dde-qt5integration package on Kali Linux using different package management tools: apt, apt-get and aptitude.