How To Install briquolo-data on Debian 10
Introduction
In this tutorial we learn how to install briquolo-data
on Debian 10.
What is briquolo-data
briquolo-data is:
Briquolo is a Breakout like game which takes place on a colourful 3d playing field. It features 23 fancy levels with moving bricks, great explosions and sounds, different camera perspectives and an editor to create your own custom levels.
This package contains the game data, including images, sounds and levels.
There are three methods to install briquolo-data
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install briquolo-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 briquolo-data
using apt-get
by running the following command:
sudo apt-get -y install briquolo-data
Install briquolo-data Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install briquolo-data
using apt
by running the following command:
sudo apt -y install briquolo-data
Install briquolo-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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install briquolo-data
using aptitude
by running the following command:
sudo aptitude -y install briquolo-data
How To Uninstall briquolo-data on Debian 10
To uninstall only the briquolo-data
package we can use the following command:
sudo apt-get remove briquolo-data
Uninstall briquolo-data And Its Dependencies
To uninstall briquolo-data
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove briquolo-data
Remove briquolo-data Configurations and Data
To remove briquolo-data
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge briquolo-data
Remove briquolo-data configuration, data, and all of its dependencies
We can use the following command to remove briquolo-data
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge briquolo-data
Dependencies
briquolo-data have the following dependencies:
References
Summary
In this tutorial we learn how to install briquolo-data
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.