How To Install peony-set-wallpaper on Kali Linux
Introduction
In this tutorial we learn how to install peony-set-wallpaper
on Kali Linux.
What is peony-set-wallpaper
peony-set-wallpaper is:
Peony is the official file manager for the UKUI desktop. This package adds extended functionality to the Peony file manager.
In addition to set wallpaper in ukui-control-center, you can select a picture and right click to quickly set as wallpaper.
There are three methods to install peony-set-wallpaper
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 peony-set-wallpaper Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install peony-set-wallpaper
using apt-get
by running the following command:
sudo apt-get -y install peony-set-wallpaper
Install peony-set-wallpaper Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install peony-set-wallpaper
using apt
by running the following command:
sudo apt -y install peony-set-wallpaper
Install peony-set-wallpaper 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 update
After updating apt database, We can install peony-set-wallpaper
using aptitude
by running the following command:
sudo aptitude -y install peony-set-wallpaper
How To Uninstall peony-set-wallpaper on Kali Linux
To uninstall only the peony-set-wallpaper
package we can use the following command:
sudo apt-get remove peony-set-wallpaper
Uninstall peony-set-wallpaper And Its Dependencies
To uninstall peony-set-wallpaper
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove peony-set-wallpaper
Remove peony-set-wallpaper Configurations and Data
To remove peony-set-wallpaper
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge peony-set-wallpaper
Remove peony-set-wallpaper configuration, data, and all of its dependencies
We can use the following command to remove peony-set-wallpaper
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge peony-set-wallpaper
Dependencies
peony-set-wallpaper have the following dependencies:
- libc6
- libgcc-s1
- libgsettings-qt1
- libqt5core5a
- libqt5gui5
- libqt5widgets5
- libstdc++6
- qt5-image-formats-plugins
References
Summary
In this tutorial we learn how to install peony-set-wallpaper
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.