wmb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wmb: command not found
or when using sudo you get the following error message
sudo: wmb: command not found
Solutions to wmb: command not found
How To Fix wmb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wmb is provided by wml package.
wml is:
WML (Website META Language) is a free and extensible Webdesigner’s off-line HTML generation toolkit for Unix. WML consists of a control frontend driving up to nine backends in a sequential pass-oriented filtering scheme. Each backend provides one particular core language. For maximum power WML additionally ships with a well-suited set of include files which provide higher-level features build on top of the backends core languages. While not trivial and idiot proof WML provides most of the core features real hackers always wanted for HTML generation.
iselect is needed for wmd, the WML Documentation browser. The remaining recommended or suggested packages are needed by optional passes or libraries.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wml
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wml.
sudo apt -y install wml
Or if you have aptitude installed you can use the following command.
sudo aptitude install wml
Summary
In this tutorial we learn how to fix wmb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.