How To Install lomiri-download-manager on Kali Linux
Introduction
In this tutorial we learn how to install lomiri-download-manager
on Kali Linux.
What is lomiri-download-manager
lomiri-download-manager is:
Lomiri Download Manager performs downloads from a centralized location.
This package includes the Lomiri Download Manager user space daemon.
There are three methods to install lomiri-download-manager
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 lomiri-download-manager Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install lomiri-download-manager
using apt-get
by running the following command:
sudo apt-get -y install lomiri-download-manager
Install lomiri-download-manager Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install lomiri-download-manager
using apt
by running the following command:
sudo apt -y install lomiri-download-manager
Install lomiri-download-manager 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 lomiri-download-manager
using aptitude
by running the following command:
sudo aptitude -y install lomiri-download-manager
How To Uninstall lomiri-download-manager on Kali Linux
To uninstall only the lomiri-download-manager
package we can use the following command:
sudo apt-get remove lomiri-download-manager
Uninstall lomiri-download-manager And Its Dependencies
To uninstall lomiri-download-manager
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove lomiri-download-manager
Remove lomiri-download-manager Configurations and Data
To remove lomiri-download-manager
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge lomiri-download-manager
Remove lomiri-download-manager configuration, data, and all of its dependencies
We can use the following command to remove lomiri-download-manager
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lomiri-download-manager
Dependencies
lomiri-download-manager have the following dependencies:
- libboost-program-options1.74.0
- libc6
- libgcc-s1
- libgoogle-glog0v5
- libldm-common0
- libldm-priv-common0
- liblomiri-download-manager-common0
- libqt5core5a
- libqt5dbus5
- libqt5network5
- libqt5sql5
- libstdc++6
- unzip
References
Summary
In this tutorial we learn how to install lomiri-download-manager
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.