How To Install glmark2-data on Ubuntu 20.04

In this tutorial we learn how to install glmark2-data on Ubuntu 20.04. glmark2-data is data files for the glmark2 OpenGL (ES) 2.0 benchmark data files for the glmark2 OpenGL (ES) 2.0 benchmark

Introduction

In this tutorial we learn how to install glmark2-data on Ubuntu 20.04.

What is glmark2-data

glmark2-data is:

A benchmark for OpenGL (ES) 2.0 that uses only the OpenGL ES 2.0 compatible API. It contains tests for standard OpenGL (ES) 2.0 features, such as vertex arrays, VBOs, texturing and shaders.

This package contains the data files used by the glmark2 benchmark.

Package: glmark2-data Architecture: all Version: 2014.03+git20150611.fa71af2d-0ubuntu7 Priority: optional Section: universe/misc Source: glmark2 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Alexandros Frantzis [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 9305 Filename: pool/universe/g/glmark2/glmark2-data_2014.03+git20150611.fa71af2d-0ubuntu7_all.deb Size: 5838824 MD5sum: d1bf7d7e022750c491843cfe43ee2da2 SHA1: ef86422ae3f7097887ce6a4463c2a026401a7f03 SHA256: 7369b20fde0109e84136129d34259b57fa6e00e0e8a659ecb2a61df6e1790a85 Homepage: https://launchpad.net/glmark2 Description-en: data files for the glmark2 OpenGL (ES) 2.0 benchmark A benchmark for OpenGL (ES) 2.0 that uses only the OpenGL ES 2.0 compatible API. It contains tests for standard OpenGL (ES) 2.0 features, such as vertex arrays, VBOs, texturing and shaders.

This package contains the data files used by the glmark2 benchmark.

There are three methods to install glmark2-data on Ubuntu 20.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 glmark2-data Using apt-get

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

sudo apt-get update

After updating apt database, We can install glmark2-data using apt-get by running the following command:

sudo apt-get -y install glmark2-data

Install glmark2-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install glmark2-data using apt by running the following command:

sudo apt -y install glmark2-data

Install glmark2-data 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 glmark2-data using aptitude by running the following command:

sudo aptitude -y install glmark2-data

How To Uninstall glmark2-data on Ubuntu 20.04

To uninstall only the glmark2-data package we can use the following command:

sudo apt-get remove glmark2-data

Uninstall glmark2-data And Its Dependencies

To uninstall glmark2-data and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove glmark2-data

Remove glmark2-data Configurations and Data

To remove glmark2-data configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge glmark2-data

Remove glmark2-data configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge glmark2-data

References

Summary

In this tutorial we learn how to install glmark2-data package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.