How To Install r-cran-filehash on Kali Linux
Introduction
In this tutorial we learn how to install r-cran-filehash on Kali Linux.
What is r-cran-filehash
r-cran-filehash is:
This GNU R package implements a simple key-value style database where character string keys are associated with data values that are stored on the disk. A simple interface is provided for inserting, retrieving, and deleting data from the database. Utilities are provided that allow ‘filehash’ databases to be treated much like environments and lists are already used in R. These utilities are provided to encourage interactive and exploratory analysis on large datasets. Three different file formats for representing the database are currently available and new formats can easily be incorporated by third parties for use in the ‘filehash’ framework.
There are three methods to install r-cran-filehash 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 r-cran-filehash Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install r-cran-filehash using apt-get by running the following command:
sudo apt-get -y install r-cran-filehashInstall r-cran-filehash Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install r-cran-filehash using apt by running the following command:
sudo apt -y install r-cran-filehashInstall r-cran-filehash 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 r-cran-filehash using aptitude by running the following command:
sudo aptitude -y install r-cran-filehashHow To Uninstall r-cran-filehash on Kali Linux
To uninstall only the r-cran-filehash package we can use the following command:
sudo apt-get remove r-cran-filehashUninstall r-cran-filehash And Its Dependencies
To uninstall r-cran-filehash and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-cran-filehashRemove r-cran-filehash Configurations and Data
To remove r-cran-filehash configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-cran-filehashRemove r-cran-filehash configuration, data, and all of its dependencies
We can use the following command to remove r-cran-filehash configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-cran-filehashDependencies
r-cran-filehash have the following dependencies:
References
Summary
In this tutorial we learn how to install r-cran-filehash package on Kali Linux using different package management tools: apt, apt-get and aptitude.