rdfwml command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rdfwml: command not found
or when using sudo you get the following error message
sudo: rdfwml: command not found
Solutions to rdfwml: command not found
How To Fix rdfwml: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rdfwml is provided by wap-wml-tools package.
wap-wml-tools is:
wml-tools is a suite of small programs designed to help in the construction of WAP WML decks. The suite currently comprises: * wmlc - a WML bytecode compiler * wmld - a WML bytecode decompiler * wmlv - a very simple text-based WML deck viewer * wbmp2xpm - a WBMP to XPM converter * wmlhtml - a simple WML deck to HTML converter * rdfwml - an RDF channel to WML deck converter
To fix this problem, we can install more using the command below.
sudo apt-get -y install wap-wml-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wap-wml-tools.
sudo apt -y install wap-wml-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install wap-wml-tools
Summary
In this tutorial we learn how to fix rdfwml command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.