ronn command not found

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

Introduction

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

ronn: command not found

or when using sudo you get the following error message

sudo: ronn: command not found

Solutions to ronn: command not found

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

In Ubuntu ronn is provided by ronn package.

ronn is:

Ronn builds manuals. It converts simple, human readable textfiles to roff for terminal display, and also to HTML for the web.

The source format includes all of Markdown but has a more rigid structure and syntax extensions for features commonly found in manpages (definition lists, link notation, etc.). The ronn-format(7) manual page defines the format in detail.

This package contains the ronn conversion tool.

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

sudo apt-get -y install ronn

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

You can also use apt command to install ronn.

sudo apt -y install ronn

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

sudo aptitude install ronn

Summary

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