How To Install checkstyle on Kali Linux
Introduction
In this tutorial we learn how to install checkstyle
on Kali Linux.
What is checkstyle
checkstyle is:
Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. It automates the process of checking Java code to spare humans of this boring (but important) task. This makes it ideal for projects that want to enforce a coding standard.
Checkstyle is highly configurable and can be made to support almost any coding standard. An example configuration file is supplied supporting the Sun Code Conventions.
There are three methods to install checkstyle
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install checkstyle Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install checkstyle
using apt-get
by running the following command:
sudo apt-get -y install checkstyle
Install checkstyle Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install checkstyle
using apt
by running the following command:
sudo apt -y install checkstyle
Install checkstyle Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install checkstyle
using aptitude
by running the following command:
sudo aptitude -y install checkstyle
How To Uninstall checkstyle on Kali Linux
To uninstall only the checkstyle
package we can use the following command:
sudo apt-get remove checkstyle
Uninstall checkstyle And Its Dependencies
To uninstall checkstyle
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove checkstyle
Remove checkstyle Configurations and Data
To remove checkstyle
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge checkstyle
Remove checkstyle configuration, data, and all of its dependencies
We can use the following command to remove checkstyle
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge checkstyle
Dependencies
checkstyle have the following dependencies:
- antlr
- default-jre-headless
- java-wrappers
- libantlr4-runtime-java
- libcommons-beanutils-java
- libcommons-lang3-java
- libcommons-logging-java
- libguava-java
- libpicocli-java
- libreflections-java
- libsaxonhe-java
References
Summary
In this tutorial we learn how to install checkstyle
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.