How To Install flight-of-the-amazon-queen on Kali Linux
Introduction
In this tutorial we learn how to install flight-of-the-amazon-queen on Kali Linux.
What is flight-of-the-amazon-queen
flight-of-the-amazon-queen is:
Flight of the Amazon Queen is a 2D point-and-click adventure game set in the 1940s, originally published for DOS and the Amiga.
You assume the role of Joe King, a pilot for hire who is given the job of flying Faye Russell (a famous movie star) into the Amazon jungle for a photo shoot. Of course, things never go according to plans. After an unfortunate turn of events they find themselves stranded in the heart of the Amazon jungle, where Joe will embark on a quest to rescue a kidnapped princess and in the process, discover the true sinister intentions of a suspiciously located Lederhosen company. In a rich 2D environment, Joe will cross paths with a variety of unlikely jungle inhabitants including, but not limited to, a tribe of Amazon women and 6-foot-tall pygmies.
Note that this package only contains game-data. The game engine is provided by ScummVM.
There are three methods to install flight-of-the-amazon-queen on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install flight-of-the-amazon-queen Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install flight-of-the-amazon-queen using apt-get by running the following command:
sudo apt-get -y install flight-of-the-amazon-queenInstall flight-of-the-amazon-queen Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install flight-of-the-amazon-queen using apt by running the following command:
sudo apt -y install flight-of-the-amazon-queenInstall flight-of-the-amazon-queen Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install flight-of-the-amazon-queen using aptitude by running the following command:
sudo aptitude -y install flight-of-the-amazon-queenHow To Uninstall flight-of-the-amazon-queen on Kali Linux
To uninstall only the flight-of-the-amazon-queen package we can use the following command:
sudo apt-get remove flight-of-the-amazon-queenUninstall flight-of-the-amazon-queen And Its Dependencies
To uninstall flight-of-the-amazon-queen and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove flight-of-the-amazon-queenRemove flight-of-the-amazon-queen Configurations and Data
To remove flight-of-the-amazon-queen configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge flight-of-the-amazon-queenRemove flight-of-the-amazon-queen configuration, data, and all of its dependencies
We can use the following command to remove flight-of-the-amazon-queen configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge flight-of-the-amazon-queenDependencies
flight-of-the-amazon-queen have the following dependencies:
References
Summary
In this tutorial we learn how to install flight-of-the-amazon-queen package on Kali Linux using different package management tools: apt, apt-get and aptitude.