rbtrace command not found

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

Introduction

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

rbtrace: command not found

or when using sudo you get the following error message

sudo: rbtrace: command not found

Solutions to rbtrace: command not found

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

In Ubuntu rbtrace is provided by ruby-rbtrace package.

ruby-rbtrace is:

rbtrace shows method calls happening inside another ruby process in real time.

rbtrace is designed to have minimal overhead, and should be safe to run in production.

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

sudo apt-get -y install ruby-rbtrace

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

You can also use apt command to install ruby-rbtrace.

sudo apt -y install ruby-rbtrace

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

sudo aptitude install ruby-rbtrace

Summary

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