disk2zip command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
disk2zip: command not found
or when using sudo you get the following error message
sudo: disk2zip: command not found
Solutions to disk2zip: command not found
How To Fix disk2zip: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu disk2zip is provided by cbmconvert package.
cbmconvert is:
cbmconvert extracts files from most known archive file formats that are used on 8-bit Commodore computer platforms and writes them to several different formats, including some formats used by some emulators.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cbmconvert
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cbmconvert.
sudo apt -y install cbmconvert
Or if you have aptitude installed you can use the following command.
sudo aptitude install cbmconvert
Summary
In this tutorial we learn how to fix disk2zip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.