zstdless command not found

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

Introduction

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

zstdless: command not found

or when using sudo you get the following error message

sudo: zstdless: command not found

Solutions to zstdless: command not found

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

In Ubuntu zstdless is provided by zstd package.

zstd is:

Zstd, short for Zstandard, is a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level compression ratio.

This package contains the CLI program implementing zstd.

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

sudo apt-get -y install zstd

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

You can also use apt command to install zstd.

sudo apt -y install zstd

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

sudo aptitude install zstd

Summary

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