How To Install portfolio-filemanager on Debian 12
Introduction
In this tutorial we learn how to install portfolio-filemanager on Debian 12.
What is portfolio-filemanager
portfolio-filemanager is:
PortFolio is a file manager which is designed for Linux mobile devices. It uses the libhandy toolkit to provide a mobile friendly, GTK based, user interface.
There are three methods to install portfolio-filemanager on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install portfolio-filemanager Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install portfolio-filemanager using apt-get by running the following command:
sudo apt-get -y install portfolio-filemanager
Install portfolio-filemanager Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install portfolio-filemanager using apt by running the following command:
sudo apt -y install portfolio-filemanager
Install portfolio-filemanager 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 portfolio-filemanager using aptitude by running the following command:
sudo aptitude -y install portfolio-filemanager
How To Uninstall portfolio-filemanager on Debian 12
To uninstall only the portfolio-filemanager package we can use the following command:
sudo apt-get remove portfolio-filemanager
Uninstall portfolio-filemanager And Its Dependencies
To uninstall portfolio-filemanager and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove portfolio-filemanager
Remove portfolio-filemanager Configurations and Data
To remove portfolio-filemanager configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge portfolio-filemanager
Remove portfolio-filemanager configuration, data, and all of its dependencies
We can use the following command to remove portfolio-filemanager configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge portfolio-filemanager
Dependencies
portfolio-filemanager have the following dependencies:
References
Summary
In this tutorial we learn how to install portfolio-filemanager package on Debian 12 using different package management tools: apt, apt-get and aptitude.