How To Install iipimage-server on Kali Linux
Introduction
In this tutorial we learn how to install iipimage-server on Kali Linux.
What is iipimage-server
iipimage-server is:
IIPImage is an advanced high-performance feature-rich imaging server system for web-based streamed viewing and zooming of ultra high-resolution images. It is designed to be fast and bandwidth-efficient with low processor and memory requirements. The system can comfortably handle gigapixel size images as well as advanced image features such as both 8 and 16 bit depths, CIELAB colorimetric images and scientific imagery such as multispectral images.
Streaming is tile-based, making it possible to view, navigate and zoom in real-time around gigapixel size images that would be impossible to download and manipulate on the local machine. It also makes the system very scalable as the number of image tile downloads will remain the same regardless of the size of the source image.
Source images can be in either TIFF or JPEG2000 format. Whole images or regions within images can also be rapidly and dynamically resized and exported by the server from a single source image without the need to store multiple files in various sizes.
There are three methods to install iipimage-server 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 iipimage-server Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install iipimage-server using apt-get by running the following command:
sudo apt-get -y install iipimage-serverInstall iipimage-server Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install iipimage-server using apt by running the following command:
sudo apt -y install iipimage-serverInstall iipimage-server 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 iipimage-server using aptitude by running the following command:
sudo aptitude -y install iipimage-serverHow To Uninstall iipimage-server on Kali Linux
To uninstall only the iipimage-server package we can use the following command:
sudo apt-get remove iipimage-serverUninstall iipimage-server And Its Dependencies
To uninstall iipimage-server and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove iipimage-serverRemove iipimage-server Configurations and Data
To remove iipimage-server configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge iipimage-serverRemove iipimage-server configuration, data, and all of its dependencies
We can use the following command to remove iipimage-server configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge iipimage-serverDependencies
iipimage-server have the following dependencies:
- libapache2-mod-fcgid
- libc6
- libfcgi0ldbl
- libgcc-s1
- libgomp1
- libjpeg62-turbo
- libmemcached11
- libopenjp2-7
- libstdc++6
- libtiff5
References
Summary
In this tutorial we learn how to install iipimage-server package on Kali Linux using different package management tools: apt, apt-get and aptitude.