How To Install fb-music-high on Ubuntu 18.04
Introduction
In this tutorial we learn how to install fb-music-high on Ubuntu 18.04.
What is fb-music-high
fb-music-high is:
Frozen-Bubble is a clone of the popular “Puzzle Bobble” game, featuring 100 single-player levels and a two-player mode.
This package contains high quality music for Frozen-Bubble. The 16-bit samples used sound better than the 8-bit ones in fb-music-low, but are about twice as large.
There are three methods to install fb-music-high 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 fb-music-high Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install fb-music-high using apt-get by running the following command:
sudo apt-get -y install fb-music-high
Install fb-music-high Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install fb-music-high using apt by running the following command:
sudo apt -y install fb-music-high
Install fb-music-high 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 fb-music-high using aptitude by running the following command:
sudo aptitude -y install fb-music-high
How To Uninstall fb-music-high on Ubuntu 18.04
To uninstall only the fb-music-high package we can use the following command:
sudo apt-get remove fb-music-high
Uninstall fb-music-high And Its Dependencies
To uninstall fb-music-high and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove fb-music-high
Remove fb-music-high Configurations and Data
To remove fb-music-high configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge fb-music-high
Remove fb-music-high configuration, data, and all of its dependencies
We can use the following command to remove fb-music-high configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fb-music-high
References
Summary
In this tutorial we learn how to install fb-music-high package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.