comprez command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
comprez: command not found
or when using sudo you get the following error message
sudo: comprez: command not found
Solutions to comprez: command not found
How To Fix comprez: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu comprez is provided by comprez package.
comprez is:
Comprez, aka ‘z’, is a simple, safe and convenient front-end for the compress(1), uncompress(1), gzip(1), bzip2(1), tar(1), zip(1) and unzip(1) utilities for compressing and uncompressing files and directories.
The basic idea is that you can just run “comprez SOMETHING” where SOMETHING is any file, directory, compressed file or compressed archive, and program will do the right thing in a standard way. Simple for novices and convenient for experts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install comprez
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install comprez.
sudo apt -y install comprez
Or if you have aptitude installed you can use the following command.
sudo aptitude install comprez
Summary
In this tutorial we learn how to fix comprez command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.