OrthancRecoverCompressedFile command not found

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

Introduction

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

OrthancRecoverCompressedFile: command not found

or when using sudo you get the following error message

sudo: OrthancRecoverCompressedFile: command not found

Solutions to OrthancRecoverCompressedFile: command not found

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

In Ubuntu OrthancRecoverCompressedFile is provided by orthanc package.

orthanc is:

Orthanc aims at providing a simple, yet powerful DICOM server for medical imaging. Orthanc can turn any computer running Windows or Linux into a Vendor Neutral Archive (in other words, a mini-PACS system). Its architecture is lightweight, meaning that no complex database administration is required, nor the installation of third-party dependencies.

What makes Orthanc unique is the fact that it provides a RESTful API. Thanks to this major feature, it is possible to drive Orthanc from any computer language. The DICOM tags of the stored medical images can be downloaded in the JSON file format. Furthermore, standard PNG images can be generated on-the-fly from the DICOM instances by Orthanc.

Orthanc lets its users focus on the content of the DICOM files, hiding the complexity of the DICOM format and of the DICOM protocol.

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

sudo apt-get -y install orthanc

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

You can also use apt command to install orthanc.

sudo apt -y install orthanc

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

sudo aptitude install orthanc

Summary

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