How To Install json-schema-test-suite on Kali Linux
Introduction
In this tutorial we learn how to install json-schema-test-suite
on Kali Linux.
What is json-schema-test-suite
json-schema-test-suite is:
This package contains a set of JSON objects that implementors of JSON Schema validation libraries can use to test their validators.
It is meant to be language agnostic and should require only a JSON parser.
The conversion of the JSON objects into tests within your test framework of choice is still the job of the validator implementor.
There are three methods to install json-schema-test-suite
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 json-schema-test-suite Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install json-schema-test-suite
using apt-get
by running the following command:
sudo apt-get -y install json-schema-test-suite
Install json-schema-test-suite Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install json-schema-test-suite
using apt
by running the following command:
sudo apt -y install json-schema-test-suite
Install json-schema-test-suite 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 json-schema-test-suite
using aptitude
by running the following command:
sudo aptitude -y install json-schema-test-suite
How To Uninstall json-schema-test-suite on Kali Linux
To uninstall only the json-schema-test-suite
package we can use the following command:
sudo apt-get remove json-schema-test-suite
Uninstall json-schema-test-suite And Its Dependencies
To uninstall json-schema-test-suite
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove json-schema-test-suite
Remove json-schema-test-suite Configurations and Data
To remove json-schema-test-suite
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge json-schema-test-suite
Remove json-schema-test-suite configuration, data, and all of its dependencies
We can use the following command to remove json-schema-test-suite
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge json-schema-test-suite
Dependencies
json-schema-test-suite have the following dependencies:
References
Summary
In this tutorial we learn how to install json-schema-test-suite
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.