How To Install php-symfony-error-handler on Kali Linux
Introduction
In this tutorial we learn how to install php-symfony-error-handler
on Kali Linux.
What is php-symfony-error-handler
php-symfony-error-handler is:
The Symfony ErrorHandler Component provides tools to manage errors and ease debugging PHP code.
Symfony is a PHP framework, a set of tools and a development methodology.
There are three methods to install php-symfony-error-handler
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 php-symfony-error-handler Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install php-symfony-error-handler
using apt-get
by running the following command:
sudo apt-get -y install php-symfony-error-handler
Install php-symfony-error-handler Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install php-symfony-error-handler
using apt
by running the following command:
sudo apt -y install php-symfony-error-handler
Install php-symfony-error-handler 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 php-symfony-error-handler
using aptitude
by running the following command:
sudo aptitude -y install php-symfony-error-handler
How To Uninstall php-symfony-error-handler on Kali Linux
To uninstall only the php-symfony-error-handler
package we can use the following command:
sudo apt-get remove php-symfony-error-handler
Uninstall php-symfony-error-handler And Its Dependencies
To uninstall php-symfony-error-handler
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-symfony-error-handler
Remove php-symfony-error-handler Configurations and Data
To remove php-symfony-error-handler
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-symfony-error-handler
Remove php-symfony-error-handler configuration, data, and all of its dependencies
We can use the following command to remove php-symfony-error-handler
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-symfony-error-handler
Dependencies
php-symfony-error-handler have the following dependencies:
- php-common
- php-psr-log
- php-psr-log
- php-symfony-debug
- php-symfony-debug
- php-symfony-polyfill-php80
- php-symfony-polyfill-php80
- php-symfony-var-dumper
References
Summary
In this tutorial we learn how to install php-symfony-error-handler
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.