How To Install edgar on Ubuntu 20.04

In this tutorial we learn how to install edgar on Ubuntu 20.04. edgar is 2D platform game with a persistent world

Introduction

In this tutorial we learn how to install edgar on Ubuntu 20.04.

What is edgar

edgar is:

The Legend of Edgar is a platform game, not unlike those found on the Amiga and SNES. Edgar must battle his way across the world, solving puzzles and defeating powerful enemies to achieve his quest.

When Edgar’s father fails to return home after venturing out one dark and stormy night, Edgar fears the worst: he has been captured by the evil sorcerer who lives in a fortress beyond the forbidden swamp.

Donning his armour, Edgar sets off to rescue him, but his quest will not be easy…

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

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

sudo apt-get update

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

sudo apt-get -y install edgar

Install edgar Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install edgar using apt by running the following command:

sudo apt -y install edgar

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

sudo aptitude -y install edgar

How To Uninstall edgar on Ubuntu 20.04

To uninstall only the edgar package we can use the following command:

sudo apt-get remove edgar

Uninstall edgar And Its Dependencies

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

sudo apt-get -y autoremove edgar

Remove edgar Configurations and Data

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

sudo apt-get -y purge edgar

Remove edgar configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge edgar

References

Summary

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