How To Install liblaxjson-dev on Kali Linux

In this tutorial we learn how to install liblaxjson-dev on Kali Linux. liblaxjson-dev is relaxed streaming JSON parser library (development files)

Introduction

In this tutorial we learn how to install liblaxjson-dev on Kali Linux.

What is liblaxjson-dev

liblaxjson-dev is:

Official JSON is almost human-readable and human-writable. Disabling a few of the strict rules makes it significantly more so.

This library is intended for parsing user input, such as a config file. It is not intended for serializing or deserializing, or as a format for computer-to- computer communication.

This relaxed streaming JSON parser allows:

  • unquoted keys
  • single quotes '
  • // and /* */ style comments
  • extra commas , in arrays and objects

This package contains the development files.

There are three methods to install liblaxjson-dev 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 liblaxjson-dev Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install liblaxjson-dev

Install liblaxjson-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install liblaxjson-dev

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

sudo aptitude -y install liblaxjson-dev

How To Uninstall liblaxjson-dev on Kali Linux

To uninstall only the liblaxjson-dev package we can use the following command:

sudo apt-get remove liblaxjson-dev

Uninstall liblaxjson-dev And Its Dependencies

To uninstall liblaxjson-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove liblaxjson-dev

Remove liblaxjson-dev Configurations and Data

To remove liblaxjson-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge liblaxjson-dev

Remove liblaxjson-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liblaxjson-dev

Dependencies

liblaxjson-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install liblaxjson-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.