How To Install phpliteadmin on Kali Linux
Introduction
In this tutorial we learn how to install phpliteadmin on Kali Linux.
What is phpliteadmin
phpliteadmin is:
phpLiteAdmin is a web-based SQLite database admin tool written in PHP with support for SQLite3 and SQLite2 (not in Debian). Following in the spirit of the flat-file system used by SQLite, phpLiteAdmin consists of a single source file, phpliteadmin.php, that is dropped into a directory on a server and then visited in a browser. The available operations, feature set, interface, and user experience is comparable to that of phpMyAdmin.
In this package, you will find phpliteadmin.php already configured to work with Apache2. This package provides the main features of the script.
There are three methods to install phpliteadmin 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 phpliteadmin Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install phpliteadmin using apt-get by running the following command:
sudo apt-get -y install phpliteadminInstall phpliteadmin Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install phpliteadmin using apt by running the following command:
sudo apt -y install phpliteadminInstall phpliteadmin 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 phpliteadmin using aptitude by running the following command:
sudo aptitude -y install phpliteadminHow To Uninstall phpliteadmin on Kali Linux
To uninstall only the phpliteadmin package we can use the following command:
sudo apt-get remove phpliteadminUninstall phpliteadmin And Its Dependencies
To uninstall phpliteadmin and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove phpliteadminRemove phpliteadmin Configurations and Data
To remove phpliteadmin configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge phpliteadminRemove phpliteadmin configuration, data, and all of its dependencies
We can use the following command to remove phpliteadmin configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge phpliteadminDependencies
phpliteadmin have the following dependencies:
References
Summary
In this tutorial we learn how to install phpliteadmin package on Kali Linux using different package management tools: apt, apt-get and aptitude.