rr-collect-symbols command not found

In this troubleshooting guide we learn how to fix rr-collect-symbols command not found error message

Introduction

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

rr-collect-symbols: command not found

or when using sudo you get the following error message

sudo: rr-collect-symbols: command not found

Solutions to rr-collect-symbols: command not found

How To Fix rr-collect-symbols: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rr-collect-symbols is provided by rr package.

rr is:

rr allows application executions to be recorded and then replayed with gdb as many times as desired.

This allows intermittent, or complex to reproduce, bugs to be captured and then debugged at leisure. Replays are deterministic, always identical from one run to another.

rr is incompatible with ptrace hardening, and currently only supports Intel CPUs with Nehalem or later microarchitectures, and some Zen CPUs. The amd64 package supports debugging amd64 and i386 binaries.

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

sudo apt-get -y install rr

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

You can also use apt command to install rr.

sudo apt -y install rr

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

sudo aptitude install rr

Summary

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