drsosc command not found

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

Introduction

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

drsosc: command not found

or when using sudo you get the following error message

sudo: drsosc: command not found

Solutions to drsosc: command not found

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

In Ubuntu drsosc is provided by drs4eb package.

drs4eb is:

The DRS4 chip is a full custom Integrated Circuit developed at PSI, Switzerland. It contains a switched capacitor array (SCA) with 1024 cells, capable of digitizing eight analog signals with high speed (6 GSPS) and high accuracy (11.5 bit SNR) on a single chip. This web site contains the chip documentation and software (firmware, drivers, applications) needed in order to work with the chip or the chip evaluation board.

This is software that is only useful if you also get the hardware for it.

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

sudo apt-get -y install drs4eb

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

You can also use apt command to install drs4eb.

sudo apt -y install drs4eb

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

sudo aptitude install drs4eb

Summary

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