How To Install renderd on Kali Linux
Introduction
In this tutorial we learn how to install renderd on Kali Linux.
What is renderd
renderd is:
mod_tile is a system to serve raster tiles for example to use within a slippy map. It provides a dynamic combination of efficient caching and on the fly rendering. Due to its dynamic rendering, only a small fraction of overall tiles need to be kept on disk, reducing the resources required. At the same time, its caching strategy allows for a high performance serving and can support several thousand requests per second.
This package contains the renderd daemon that creates “metatiles” for map tile requests issued by mod_tile using the mapnik library.
There are three methods to install renderd 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 renderd Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install renderd using apt-get by running the following command:
sudo apt-get -y install renderdInstall renderd Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install renderd using apt by running the following command:
sudo apt -y install renderdInstall renderd 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 renderd using aptitude by running the following command:
sudo aptitude -y install renderdHow To Uninstall renderd on Kali Linux
To uninstall only the renderd package we can use the following command:
sudo apt-get remove renderdUninstall renderd And Its Dependencies
To uninstall renderd and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove renderdRemove renderd Configurations and Data
To remove renderd configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge renderdRemove renderd configuration, data, and all of its dependencies
We can use the following command to remove renderd configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge renderdDependencies
renderd have the following dependencies:
References
Summary
In this tutorial we learn how to install renderd package on Kali Linux using different package management tools: apt, apt-get and aptitude.