ibanchk command not found

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

Introduction

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

ibanchk: command not found

or when using sudo you get the following error message

sudo: ibanchk: command not found

Solutions to ibanchk: command not found

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

In Ubuntu ibanchk is provided by ktoblzcheck package.

ktoblzcheck is:

ktoblzcheck is a command line tool for verification of bank account numbers and bank codes (BLZ) of German Banks. It is based on the specifications of the “Deutsche Bundesbank”. It also supports the verification of international bank account numbers (IBAN) and bank identifier codes (BIC).

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

sudo apt-get -y install ktoblzcheck

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

You can also use apt command to install ktoblzcheck.

sudo apt -y install ktoblzcheck

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

sudo aptitude install ktoblzcheck

Summary

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