How To Install iipimage-server on Debian 10
Introduction
In this tutorial we learn how to install iipimage-server
on Debian 10.
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 Debian 10. 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 update
After updating apt database, We can install iipimage-server
using apt-get
by running the following command:
sudo apt-get -y install iipimage-server
Install iipimage-server Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install iipimage-server
using apt
by running the following command:
sudo apt -y install iipimage-server
Install iipimage-server Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install iipimage-server
using aptitude
by running the following command:
sudo aptitude -y install iipimage-server
How To Uninstall iipimage-server on Debian 10
To uninstall only the iipimage-server
package we can use the following command:
sudo apt-get remove iipimage-server
Uninstall iipimage-server And Its Dependencies
To uninstall iipimage-server
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove iipimage-server
Remove iipimage-server Configurations and Data
To remove iipimage-server
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge iipimage-server
Remove 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-server
Dependencies
iipimage-server have the following dependencies:
References
Summary
In this tutorial we learn how to install iipimage-server
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.