How To Install libnextcloudsync0 on Kali Linux
Introduction
In this tutorial we learn how to install libnextcloudsync0
on Kali Linux.
What is libnextcloudsync0
libnextcloudsync0 is:
The Nextcloud desktop app lets you always have your latest files wherever you are. Just specify one or more folders on the local machine to and a server to synchronize to. You can configure more computers to synchronize to the same server and any change to the files on one computer will silently and reliably flow across to every other.
This package provides the library for nextcloud-desktop.
There are three methods to install libnextcloudsync0
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 libnextcloudsync0 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libnextcloudsync0
using apt-get
by running the following command:
sudo apt-get -y install libnextcloudsync0
Install libnextcloudsync0 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libnextcloudsync0
using apt
by running the following command:
sudo apt -y install libnextcloudsync0
Install libnextcloudsync0 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 libnextcloudsync0
using aptitude
by running the following command:
sudo aptitude -y install libnextcloudsync0
How To Uninstall libnextcloudsync0 on Kali Linux
To uninstall only the libnextcloudsync0
package we can use the following command:
sudo apt-get remove libnextcloudsync0
Uninstall libnextcloudsync0 And Its Dependencies
To uninstall libnextcloudsync0
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libnextcloudsync0
Remove libnextcloudsync0 Configurations and Data
To remove libnextcloudsync0
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libnextcloudsync0
Remove libnextcloudsync0 configuration, data, and all of its dependencies
We can use the following command to remove libnextcloudsync0
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libnextcloudsync0
Dependencies
libnextcloudsync0 have the following dependencies:
- libc6
- libgcc-s1
- libqt5core5a
- libqt5gui5
- libqt5keychain1
- libqt5network5
- libqt5svg5
- libqt5widgets5
- libsqlite3-0
- libssl1.1
- libstdc++6
- zlib1g
References
Summary
In this tutorial we learn how to install libnextcloudsync0
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.