rygel command not found

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

Introduction

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

rygel: command not found

or when using sudo you get the following error message

sudo: rygel: command not found

Solutions to rygel: command not found

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

In Ubuntu rygel is provided by rygel package.

rygel is:

Rygel is a home media solution that allows you to easily share audio, video and pictures, and control of media player on your home network. In technical terms it is both a UPnP AV MediaServer and MediaRenderer implemented through a plug-in mechanism. Interoperability with other devices in the market is achieved by conformance to very strict requirements of DLNA and on the fly conversion of media to format that client devices are capable of handling.

This package contains the core of Rygel and following plugins:

  • media-export: Recursively exports folders and files specified in the user configuration. This plugin supports all types of URIs that gio/gvfs and GStreamer can handle.
  • external: A MediaServer plugin that exports media hierarchies provided by external applications.
  • mpris: Export of media players that implement MPRIS2 D-Bus interface, as MediaRenderer devices.

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

sudo apt-get -y install rygel

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

You can also use apt command to install rygel.

sudo apt -y install rygel

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

sudo aptitude install rygel

Summary

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