renum command not found

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

Introduction

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

renum: command not found

or when using sudo you get the following error message

sudo: renum: command not found

Solutions to renum: command not found

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

In Ubuntu renum is provided by bwbasic package.

bwbasic is:

The Bywater BASIC Interpreter (bwBASIC) implements a large superset of the ANSI Standard for Minimal BASIC (X3.60-1978) and a significant subset of the ANSI Standard for Full BASIC (X3.113-1987) in C. It also offers shell programming facilities as an extension of BASIC. bwBASIC seeks to be as portable as possible.

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

sudo apt-get -y install bwbasic

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

You can also use apt command to install bwbasic.

sudo apt -y install bwbasic

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

sudo aptitude install bwbasic

Summary

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