How To Install libjpeg-turbo-test on Ubuntu 18.04

In this tutorial we learn how to install libjpeg-turbo-test on Ubuntu 18.04. libjpeg-turbo-test is Program for benchmarking and testing libjpeg-turbo

Introduction

In this tutorial we learn how to install libjpeg-turbo-test on Ubuntu 18.04.

What is libjpeg-turbo-test

libjpeg-turbo-test is:

This package contains tjunittest and tjbench. tjunittest tests the basic functionality of the library and data files for performing those tests. tjbench runs some benchmarks.

There are three methods to install libjpeg-turbo-test on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libjpeg-turbo-test Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libjpeg-turbo-test using apt-get by running the following command:

sudo apt-get -y install libjpeg-turbo-test

Install libjpeg-turbo-test Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libjpeg-turbo-test using apt by running the following command:

sudo apt -y install libjpeg-turbo-test

Install libjpeg-turbo-test 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libjpeg-turbo-test using aptitude by running the following command:

sudo aptitude -y install libjpeg-turbo-test

How To Uninstall libjpeg-turbo-test on Ubuntu 18.04

To uninstall only the libjpeg-turbo-test package we can use the following command:

sudo apt-get remove libjpeg-turbo-test

Uninstall libjpeg-turbo-test And Its Dependencies

To uninstall libjpeg-turbo-test and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libjpeg-turbo-test

Remove libjpeg-turbo-test Configurations and Data

To remove libjpeg-turbo-test configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libjpeg-turbo-test

Remove libjpeg-turbo-test configuration, data, and all of its dependencies

We can use the following command to remove libjpeg-turbo-test configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libjpeg-turbo-test

References

Summary

In this tutorial we learn how to install libjpeg-turbo-test package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.