How To Install nzbget on Kali Linux
Introduction
In this tutorial we learn how to install nzbget on Kali Linux.
What is nzbget
nzbget is:
NZBGet is a command-line based binary newsgrabber that uses nzb files as described in http://docs.newzbin.com/index.php/Newzbin:NZB_Specs, they are commonly used to describe binaries posted in the Usenet that span multiple posts.
nzbget can be run as a standalone tool, in client/server mode or as a daemon, which makes it ideal to run on NAS-devices or routers. nzbget supports automatic par-check/-repair can use scripts to postprocess downloaded files, for example to stream them to an audio/video player.
There are three methods to install nzbget 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 nzbget Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install nzbget using apt-get by running the following command:
sudo apt-get -y install nzbgetInstall nzbget Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install nzbget using apt by running the following command:
sudo apt -y install nzbgetInstall nzbget 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 nzbget using aptitude by running the following command:
sudo aptitude -y install nzbgetHow To Uninstall nzbget on Kali Linux
To uninstall only the nzbget package we can use the following command:
sudo apt-get remove nzbgetUninstall nzbget And Its Dependencies
To uninstall nzbget and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nzbgetRemove nzbget Configurations and Data
To remove nzbget configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nzbgetRemove nzbget configuration, data, and all of its dependencies
We can use the following command to remove nzbget configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nzbgetDependencies
nzbget have the following dependencies:
References
Summary
In this tutorial we learn how to install nzbget package on Kali Linux using different package management tools: apt, apt-get and aptitude.