How To Install trigger-rally on Ubuntu 18.04

In this tutorial we learn how to install trigger-rally on Ubuntu 18.04. trigger-rally is free 3D rally racing car game

Introduction

In this tutorial we learn how to install trigger-rally on Ubuntu 18.04.

What is trigger-rally

trigger-rally is:

Trigger is a free 3D rally car racing game. Fun for all the family!

Trigger comes with a number of challenges where you have to race several tracks to finish each challenge.

When racing a track, you have to reach several locations marked by pulsating rings in sequence. You win a race if you reach the last location in time.

Trigger is highly customisable, and it’s easy to add new levels and vehicles.

System Requirements consist of an OpenGL accelerated video card.

There are three methods to install trigger-rally 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 trigger-rally Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install trigger-rally

Install trigger-rally Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install trigger-rally

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

sudo aptitude -y install trigger-rally

How To Uninstall trigger-rally on Ubuntu 18.04

To uninstall only the trigger-rally package we can use the following command:

sudo apt-get remove trigger-rally

Uninstall trigger-rally And Its Dependencies

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

sudo apt-get -y autoremove trigger-rally

Remove trigger-rally Configurations and Data

To remove trigger-rally configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge trigger-rally

Remove trigger-rally configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge trigger-rally

References

Summary

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