ikslint command not found

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

Introduction

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

ikslint: command not found

or when using sudo you get the following error message

sudo: ikslint: command not found

Solutions to ikslint: command not found

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

In Ubuntu ikslint is provided by libiksemel-utils package.

libiksemel-utils is:

iksemel handles Jabber connections, parses XML, and sends and receives Jabber messages. It works pretty good for parsing other kinds of XML, too, if the need arises.

This package includes three utilitaries from the library: ikslint, which checks xml files for well-formedness, iksperf, which tests speed and memory usage, and, finally, iksroster, which backups your roster.

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

sudo apt-get -y install libiksemel-utils

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

You can also use apt command to install libiksemel-utils.

sudo apt -y install libiksemel-utils

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

sudo aptitude install libiksemel-utils

Summary

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