How To Install megadown on Debian 10
Introduction
In this tutorial we learn how to install megadown on Debian 10.
What is megadown
megadown is:
This package contains a Bash script, and a Python helper, which download files from mega.nz and megacrypter. Downloaded files are by default placed inside the current directory. It supports speed limiting and can only print file metadata before exiting. There is also a multi-URL mode, where an input file is processed, which acts as a URL list.
There are three methods to install megadown on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install megadown Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install megadown using apt-get by running the following command:
sudo apt-get -y install megadown
Install megadown Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install megadown using apt by running the following command:
sudo apt -y install megadown
Install megadown Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install megadown using aptitude by running the following command:
sudo aptitude -y install megadown
How To Uninstall megadown on Debian 10
To uninstall only the megadown package we can use the following command:
sudo apt-get remove megadown
Uninstall megadown And Its Dependencies
To uninstall megadown and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove megadown
Remove megadown Configurations and Data
To remove megadown configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge megadown
Remove megadown configuration, data, and all of its dependencies
We can use the following command to remove megadown configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge megadown
Dependencies
megadown have the following dependencies:
References
Summary
In this tutorial we learn how to install megadown package on Debian 10 using different package management tools: apt, apt-get and aptitude.