rxgen command not found

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

Introduction

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

rxgen: command not found

or when using sudo you get the following error message

sudo: rxgen: command not found

Solutions to rxgen: command not found

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

In Ubuntu rxgen is provided by libopenafs-dev package.

libopenafs-dev is:

AFS is a distributed filesystem allowing cross-platform sharing of files among multiple computers. Facilities are provided for access control, authentication, backup and administrative management.

This package provides static development libraries and headers needed to compile AFS applications.

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

sudo apt-get -y install libopenafs-dev

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

You can also use apt command to install libopenafs-dev.

sudo apt -y install libopenafs-dev

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

sudo aptitude install libopenafs-dev

Summary

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