How To Install chromium-bsu-data on Ubuntu 18.04
Introduction
In this tutorial we learn how to install chromium-bsu-data on Ubuntu 18.04.
What is chromium-bsu-data
chromium-bsu-data is:
This package provides all the sounds, images, translations and documentation required for Chromium B.S.U., a fast paced high action scrolling space shooter. The sounds include menu music, in-game music and various sound effects. The images include ships, weapons and miscellaneous UI elements. The documentation includes a FAQ and a visual introduction to the game.
There are three methods to install chromium-bsu-data 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 chromium-bsu-data Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install chromium-bsu-data using apt-get by running the following command:
sudo apt-get -y install chromium-bsu-data
Install chromium-bsu-data Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install chromium-bsu-data using apt by running the following command:
sudo apt -y install chromium-bsu-data
Install chromium-bsu-data 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 chromium-bsu-data using aptitude by running the following command:
sudo aptitude -y install chromium-bsu-data
How To Uninstall chromium-bsu-data on Ubuntu 18.04
To uninstall only the chromium-bsu-data package we can use the following command:
sudo apt-get remove chromium-bsu-data
Uninstall chromium-bsu-data And Its Dependencies
To uninstall chromium-bsu-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove chromium-bsu-data
Remove chromium-bsu-data Configurations and Data
To remove chromium-bsu-data configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge chromium-bsu-data
Remove chromium-bsu-data configuration, data, and all of its dependencies
We can use the following command to remove chromium-bsu-data configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge chromium-bsu-data
References
Summary
In this tutorial we learn how to install chromium-bsu-data package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.