axhtpasswd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
axhtpasswd: command not found
or when using sudo you get the following error message
sudo: axhtpasswd: command not found
Solutions to axhtpasswd: command not found
How To Fix axhtpasswd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu axhtpasswd is provided by axhttpd package.
axhttpd is:
The axTLS embedded SSL project is a highly configurable client/server TLSv1.2 library designed for platforms with small memory requirements, and is suited to embedded projects. It comes with a small HTTP/HTTPS server and additional test tools.
This package contains the demo HTTP/HTTPS server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install axhttpd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install axhttpd.
sudo apt -y install axhttpd
Or if you have aptitude installed you can use the following command.
sudo aptitude install axhttpd
Summary
In this tutorial we learn how to fix axhtpasswd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.