roard command not found

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

Introduction

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

roard: command not found

or when using sudo you get the following error message

sudo: roard: command not found

Solutions to roard: command not found

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

In Ubuntu roard is provided by roaraudio package.

roaraudio is:

RoarAudio is a system for audio mixing. Its main purpose is to mix audio from different clients before sending it to its outputs (for example a soundcard). It is completely network transparent (UNIX sockets, TCP/IP, DECnet) and supports many common codecs like Ogg Vorbis, Speex or FLAC.

This package contains the RoarAudio sound server “roard” implementing the RoarAudio protocol.

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

sudo apt-get -y install roaraudio

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

You can also use apt command to install roaraudio.

sudo apt -y install roaraudio

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

sudo aptitude install roaraudio

Summary

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