stompcat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stompcat: command not found
or when using sudo you get the following error message
sudo: stompcat: command not found
Solutions to stompcat: command not found
How To Fix stompcat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stompcat is provided by ruby-stomp package.
ruby-stomp is:
Stomp is a text-oriented wire protocol for messaging (MOM/MQ/JMS) type systems. This library provides two useful interfaces, a low- level class, Stomp::Connection, which is a basic protocol implementation, and Stomp::Client, which is designed as a higher level convenience API.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-stomp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-stomp.
sudo apt -y install ruby-stomp
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-stomp
Summary
In this tutorial we learn how to fix stompcat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.