cpipe command not found

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

Introduction

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

cpipe: command not found

or when using sudo you get the following error message

sudo: cpipe: command not found

Solutions to cpipe: command not found

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

In Ubuntu cpipe is provided by cpipe package.

cpipe is:

Cpipe copies its standard input to its standard output while measuring the time it takes to read an input buffer and write an output buffer. Statistics of average throughput and the total amount of bytes copied are printed to the standard error output.

Cpipe can also be used as alternative to the buffer utility for simple usecases.

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

sudo apt-get -y install cpipe

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

You can also use apt command to install cpipe.

sudo apt -y install cpipe

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

sudo aptitude install cpipe

Summary

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