How To Install drascula on Ubuntu 20.04

In this tutorial we learn how to install drascula on Ubuntu 20.04. drascula is classic 2D point and click adventure game – English version

Introduction

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

What is drascula

drascula is:

Drascula: The Vampire Strikes Back is a classic humorous 2D point and click adventure game, first released by Alcachofa Soft S.L. in 1996.

In Drascula you play the role of John Hacker, a British estate agent, that gets to meet a gorgeous blond girl who is kidnapped by the notorious vampire Count Drascula and embark on a fun yet dangerous quest to rescue her.

Unfortunately Hacker is not aware of Drascula’s real ambitions:

DOMINATING the World and demonstrating that he is even more evil than his brother Vlad.

This is the English version of Drascula: The Vampire Strikes Back. It also features voice output and subtitles.

Please install the drascula-music package to enjoy the background music of the game. There are furthermore additional language packages available with subtitles in Spanish, German, French and Italian.

Note that this package only contains game-data. The game engine is provided by ScummVM.

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

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

sudo apt-get update

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

sudo apt-get -y install drascula

Install drascula Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install drascula

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

sudo aptitude -y install drascula

How To Uninstall drascula on Ubuntu 20.04

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

sudo apt-get remove drascula

Uninstall drascula And Its Dependencies

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

sudo apt-get -y autoremove drascula

Remove drascula Configurations and Data

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

sudo apt-get -y purge drascula

Remove drascula configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge drascula

References

Summary

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