dictzcat command not found

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

Introduction

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

dictzcat: command not found

or when using sudo you get the following error message

sudo: dictzcat: command not found

Solutions to dictzcat: command not found

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

In Ubuntu dictzcat is provided by dictzip package.

dictzip is:

This package provides a utility to compress dictionary databases with the LZ77 algorithm in a manner which is completely compatible with gzip(1), but using an extension that allows for random access to chunks of about 57kB without the overhead of decompressing the entire file.

This package also includes dictunzip, to decompress dictzipped files, and dictzcat, for viewing dictzipped files.

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

sudo apt-get -y install dictzip

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

You can also use apt command to install dictzip.

sudo apt -y install dictzip

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

sudo aptitude install dictzip

Summary

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