How To Install lbreakout2-data on Ubuntu 18.04

In this tutorial we learn how to install lbreakout2-data on Ubuntu 18.04. lbreakout2-data is ball-and-paddle game with nice graphics (DATA FILES)

Introduction

In this tutorial we learn how to install lbreakout2-data on Ubuntu 18.04.

What is lbreakout2-data

lbreakout2-data is:

lbreakout2 is a game similar to the classics breakout and xboing, featuring a number of added graphical enhancements and effects. You control a paddle at the bottom of the playing-field, and must destroy bricks at the top by bouncing balls against them.

This package contains the data files for lbreakout2.

There are three methods to install lbreakout2-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 lbreakout2-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 lbreakout2-data using apt-get by running the following command:

sudo apt-get -y install lbreakout2-data

Install lbreakout2-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install lbreakout2-data using apt by running the following command:

sudo apt -y install lbreakout2-data

Install lbreakout2-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 lbreakout2-data using aptitude by running the following command:

sudo aptitude -y install lbreakout2-data

How To Uninstall lbreakout2-data on Ubuntu 18.04

To uninstall only the lbreakout2-data package we can use the following command:

sudo apt-get remove lbreakout2-data

Uninstall lbreakout2-data And Its Dependencies

To uninstall lbreakout2-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove lbreakout2-data

Remove lbreakout2-data Configurations and Data

To remove lbreakout2-data configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge lbreakout2-data

Remove lbreakout2-data configuration, data, and all of its dependencies

We can use the following command to remove lbreakout2-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge lbreakout2-data

References

Summary

In this tutorial we learn how to install lbreakout2-data package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.