How To Install php-symfony-http-kernel on Kali Linux
Introduction
In this tutorial we learn how to install php-symfony-http-kernel on Kali Linux.
What is php-symfony-http-kernel
php-symfony-http-kernel is:
The Symfony HttpKernel Component provides a structured process for converting requests into responses and is flexible enough to build full-stack frameworks like Symfony as well as micro frameworks like Silex on top of it.
Symfony is a PHP framework, a set of tools and a development methodology.
There are three methods to install php-symfony-http-kernel 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-http-kernel Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install php-symfony-http-kernel using apt-get by running the following command:
sudo apt-get -y install php-symfony-http-kernelInstall php-symfony-http-kernel Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install php-symfony-http-kernel using apt by running the following command:
sudo apt -y install php-symfony-http-kernelInstall php-symfony-http-kernel 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 php-symfony-http-kernel using aptitude by running the following command:
sudo aptitude -y install php-symfony-http-kernelHow To Uninstall php-symfony-http-kernel on Kali Linux
To uninstall only the php-symfony-http-kernel package we can use the following command:
sudo apt-get remove php-symfony-http-kernelUninstall php-symfony-http-kernel And Its Dependencies
To uninstall php-symfony-http-kernel and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-symfony-http-kernelRemove php-symfony-http-kernel Configurations and Data
To remove php-symfony-http-kernel configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-symfony-http-kernelRemove php-symfony-http-kernel configuration, data, and all of its dependencies
We can use the following command to remove php-symfony-http-kernel configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-symfony-http-kernelDependencies
php-symfony-http-kernel have the following dependencies:
- php-common
- php-symfony-error-handler
- php-symfony-error-handler
- php-symfony-event-dispatcher
- php-symfony-event-dispatcher
- php-symfony-http-client-contracts
- php-symfony-http-foundation
- php-symfony-polyfill-php80
- php-symfony-polyfill-php80
- php-psr-log
- php-psr-log
References
Summary
In this tutorial we learn how to install php-symfony-http-kernel package on Kali Linux using different package management tools: apt, apt-get and aptitude.