How To Install tiger on Debian 9
Introduction
In this tutorial we learn how to install tiger
on Debian 9.
What is tiger
tiger is:
TIGER, or the ’tiger’ scripts, is a set of Bourne shell scripts, C programs and data files which are used to perform a security audit of different operating systems. The tools can be both run altogether once to generate an audit report of the system and they can also be run periodically to provide information on changes to the system’s security once a security baseline has been defined. Consequently, they can be used also as a host intrusion detection mechanism.
The tools rely on specialised external security tools such as John the Ripper, Chkroot and integrity check tools (like Tripwire, Integrit or Aide) for some of the tasks. The periodic review mechanism relies on the use of the cron task scheduler and an email delivery system.
TIGER has one primary goal: report ways the system’s security can be compromised.
Debian’s TIGER incorporates new checks primarily oriented towards Debian distribution including: md5sums checks of installed files, location of files not belonging to packages, check of security advisories and analysis of local listening processes.
This package provides all the security scripts and data files.
There are three methods to install tiger
on Debian 9. 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 9
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 9, 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 9 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 9 using different package management tools: apt
, apt-get
and aptitude
.