xlunzip command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xlunzip: command not found
or when using sudo you get the following error message
sudo: xlunzip: command not found
Solutions to xlunzip: command not found
How To Fix xlunzip: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xlunzip is provided by xlunzip package.
xlunzip is:
Lzip is a lossless data compressor based on the LZMA algorithm, with very safe integrity checking and a user interface similar to the one of gzip or bzip2.
This package contains the decompressor using the lzip_decompress linux module as backend.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xlunzip
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xlunzip.
sudo apt -y install xlunzip
Or if you have aptitude installed you can use the following command.
sudo aptitude install xlunzip
Summary
In this tutorial we learn how to fix xlunzip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.