How To Install tiger on Debian 11
Introduction
In this tutorial we learn how to install tiger
on Debian 11.
What is tiger
tiger is:
TIGER, or the ’tiger’ scripts, is a set of tools (Bourne shell scripts and C programs) which are used to perform a security audit of different operating systems components. The tools can be both run all at once to generate an audit report of the system and to detect elements that could be fixed when hardening it.
TIGER has one primary goal: report ways the system’s security can be compromised.
Most of the tools are independent, but some of them rely on specialised external security tools such as John the Ripper, Chkroot and integrity check tools (like Tripwire, Integrit or Aide) to execute some tasks.
The same checks are also configured by default to run periodically and detect deviations or unauthorised changes. This makes it possible to used them also as a host intrusion detection mechanism. This review mechanism relies on the use of the cron task scheduler and an email delivery system to report errors and deviations.
This package provides all the security scripts and data files for Linux. A separate package is available providing the scripts for other operating systems so they can be run from a centralised repository.
The Linux scripts incorporate specific checks targetting the Debian OS including: md5sums checks of installed files, location of files not belonging to packages, and analysis of local listening processes.
Alternatives to TIGER available in Debian include lynis and ossec. If you are aiming for a small set of checks, try checksecurity, lsat or yasat.
There are three methods to install tiger
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install tiger Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tiger
using apt-get
by running the following command:
sudo apt-get -y install tiger
Install tiger Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tiger
using apt
by running the following command:
sudo apt -y install tiger
Install tiger 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 tiger
using aptitude
by running the following command:
sudo aptitude -y install tiger
How To Uninstall tiger on Debian 11
To uninstall only the tiger
package we can use the following command:
sudo apt-get remove tiger
Uninstall tiger And Its Dependencies
To uninstall tiger
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove tiger
Remove tiger Configurations and Data
To remove tiger
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge tiger
Remove tiger configuration, data, and all of its dependencies
We can use the following command to remove tiger
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tiger
Dependencies
tiger have the following dependencies:
References
Summary
In this tutorial we learn how to install tiger
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.