How To Install freegish-dbg on Ubuntu 18.04

In this tutorial we learn how to install freegish-dbg on Ubuntu 18.04. freegish-dbg is arcade game (debugging symbols)

Introduction

In this tutorial we learn how to install freegish-dbg on Ubuntu 18.04.

What is freegish-dbg

freegish-dbg is:

Freegish is a 2D platform game, where the player maneuvers character of a ball of tar. Character may become sticky, slick, heavy and can jump.

The game contains only first five levels of the single player campaign and few multiplayer levels for mini games like sumo or football.

Freegish is based on open sourced code of the famous game called Gish with added free art assets.

This package contains the debugging symbols.

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

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

sudo apt-get update

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

sudo apt-get -y install freegish-dbg

Install freegish-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install freegish-dbg

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

sudo aptitude -y install freegish-dbg

How To Uninstall freegish-dbg on Ubuntu 18.04

To uninstall only the freegish-dbg package we can use the following command:

sudo apt-get remove freegish-dbg

Uninstall freegish-dbg And Its Dependencies

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

sudo apt-get -y autoremove freegish-dbg

Remove freegish-dbg Configurations and Data

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

sudo apt-get -y purge freegish-dbg

Remove freegish-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge freegish-dbg

References

Summary

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