How To Install cldump on Kali Linux
Introduction
In this tutorial we learn how to install cldump on Kali Linux.
What is cldump
cldump is:
The cldump utility allows you to extract the content of a Clarion database; Clarion is a Windows IDE similar to Delphi and others, and has its own (simple) database format.
cldump can export the content of the database to CSV or SQL, plus its own “format” which dumps all the meta data along with the data contained in the database. When using the SQL output, you’ll get a nearly ready-to-go dump of the database that will create the table and the indexes and insert the data into the table.
Note that cldump doesn’t support all the datatypes yet; patches welcome.
You may be interested in the dbview package too, which can dump dBase files.
There are three methods to install cldump 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 cldump Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install cldump using apt-get by running the following command:
sudo apt-get -y install cldumpInstall cldump Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install cldump using apt by running the following command:
sudo apt -y install cldumpInstall cldump 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 cldump using aptitude by running the following command:
sudo aptitude -y install cldumpHow To Uninstall cldump on Kali Linux
To uninstall only the cldump package we can use the following command:
sudo apt-get remove cldumpUninstall cldump And Its Dependencies
To uninstall cldump and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove cldumpRemove cldump Configurations and Data
To remove cldump configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge cldumpRemove cldump configuration, data, and all of its dependencies
We can use the following command to remove cldump configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge cldumpDependencies
cldump have the following dependencies:
References
Summary
In this tutorial we learn how to install cldump package on Kali Linux using different package management tools: apt, apt-get and aptitude.