jing command not found

In this troubleshooting guide we learn how to fix jing command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

jing: command not found

or when using sudo you get the following error message

sudo: jing: command not found

Solutions to jing: command not found

How To Fix jing: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu jing is provided by jing package.

jing is:

This provides a validator for

  • RELAX NG 1.0 Specification,
  • RELAX NG Compact Syntax, and
  • parts of RELAX NG DTD Compatibility, specifically checking of ID/IDREF/IDREFS.

To fix this problem, we can install more using the command below.

sudo apt-get -y install jing

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install jing.

sudo apt -y install jing

Or if you have aptitude installed you can use the following command.

sudo aptitude install jing

Summary

In this tutorial we learn how to fix jing command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.