iksperf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
iksperf: command not found
or when using sudo you get the following error message
sudo: iksperf: command not found
Solutions to iksperf: command not found
How To Fix iksperf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu iksperf 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 iksperf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.