bchunk command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bchunk: command not found
or when using sudo you get the following error message
sudo: bchunk: command not found
Solutions to bchunk: command not found
How To Fix bchunk: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bchunk is provided by bchunk package.
bchunk is:
The bchunk package contains a UNIX/C rewrite of the BinChunker program. BinChunker converts a CD image in a .bin/.cue format (sometimes .raw/.cue) into a set of .iso and .cdr/.wav tracks. The .bin/.cue format is used by some non-UNIX CD-writing software, but is not supported on most other CD-writing programs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bchunk
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bchunk.
sudo apt -y install bchunk
Or if you have aptitude installed you can use the following command.
sudo aptitude install bchunk
Summary
In this tutorial we learn how to fix bchunk command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.