rabbit-command command not found

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

Introduction

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

rabbit-command: command not found

or when using sudo you get the following error message

sudo: rabbit-command: command not found

Solutions to rabbit-command: command not found

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

In Ubuntu rabbit-command is provided by rabbit package.

rabbit is:

Rabbit is an application to do presentations with RD documents. RD is a simple, easy-to-read, and easy-to-write text format like Wiki. Rabbit has many noteworthy features, which distinguish this application from other presentation tools.

  • Slide looks are defined with Ruby and customizable.
  • Various keyboard interfaces.
  • Mouse gesture support.
  • Slides can contain many image formats: EPS, SVG, GIMP, and Dia.
  • Rabbit can be a server and you can access it with the dRuby interface.
  • and more…

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

sudo apt-get -y install rabbit

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

You can also use apt command to install rabbit.

sudo apt -y install rabbit

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

sudo aptitude install rabbit

Summary

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