Introduction
In this tutorial we learn how to install excellent-bifurcation
on Ubuntu 22.04.
What is excellent-bifurcation
excellent-bifurcation is:
Excellent Bifurcation is a vertical shooter in which you have two sides
available to play on. Its graphics try to mimic the colours, sounds and
feeling of the 8-bit games.
In the game, you drive two ships at the same time, on two sides of the
screen. The game play is very unique and fun. It might be quite a brain
bender anyway.
Excellent Bifurcation was Linley Henzel’s entry in the AutoFire 2007 Shooter
Competition, and finished in 2nd place.
There are three methods to install excellent-bifurcation
on Ubuntu 22.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 excellent-bifurcation Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install excellent-bifurcation
using apt-get
by running the following command:
sudo apt-get -y install excellent-bifurcation
Install excellent-bifurcation Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install excellent-bifurcation
using apt
by running the following command:
sudo apt -y install excellent-bifurcation
Install excellent-bifurcation 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 excellent-bifurcation
using aptitude
by running the following command:
sudo aptitude -y install excellent-bifurcation
How To Uninstall excellent-bifurcation on Ubuntu 22.04
To uninstall only the excellent-bifurcation
package we can use the following command:
sudo apt-get remove excellent-bifurcation
Uninstall excellent-bifurcation And Its Dependencies
To uninstall excellent-bifurcation
and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove excellent-bifurcation
Remove excellent-bifurcation Configurations and Data
To remove excellent-bifurcation
configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge excellent-bifurcation
Remove excellent-bifurcation configuration, data, and all of its dependencies
We can use the following command to remove excellent-bifurcation
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge excellent-bifurcation
References
Summary
In this tutorial we learn how to install excellent-bifurcation
package on Ubuntu 22.04 using different package management tools: apt
, apt-get
and aptitude
.