How To Install lumin on Debian 12

Learn how to install lumin on Debian 12 with this tutorial. lumin is pattern match highlighter

Introduction

In this tutorial we learn how to install lumin on Debian 12.

What is lumin

lumin is:

lumin highlights matches to a specified pattern (string or regular expression) in files, using color. This is similar to grep with colorized output, but it outputs all lines in the given files, not only matching lines.

There are three methods to install lumin on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install lumin Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install lumin

Install lumin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install lumin using apt by running the following command:

sudo apt -y install lumin

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

sudo aptitude -y install lumin

How To Uninstall lumin on Debian 12

To uninstall only the lumin package we can use the following command:

sudo apt-get remove lumin

Uninstall lumin And Its Dependencies

To uninstall lumin and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove lumin

Remove lumin Configurations and Data

To remove lumin configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge lumin

Remove lumin configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge lumin

Dependencies

lumin have the following dependencies:

References

Summary

In this tutorial we learn how to install lumin package on Debian 12 using different package management tools: apt, apt-get and aptitude.