bind2csv2 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bind2csv2: command not found
or when using sudo you get the following error message
sudo: bind2csv2: command not found
Solutions to bind2csv2: command not found
How To Fix bind2csv2: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bind2csv2 is provided by maradns package.
maradns is:
MaraDNS is an easy to configure DNS server that functions as an authoritative domain name server. MaraDNS is optimised for serving a small number of domains quickly and efficiently. Well suited to host your own private DNS server for making up subdomains with minimal fuss. Maradns is security-aware by utilising a special string library which is resistant to buffer overflows and mandating to run as an unprivileged user.
For the recursive name server component and IPv6 support see maradns-deadwood. For TCP and domain transfer support see maradns-zoneserver.
To fix this problem, we can install more using the command below.
sudo apt-get -y install maradns
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install maradns.
sudo apt -y install maradns
Or if you have aptitude installed you can use the following command.
sudo aptitude install maradns
Summary
In this tutorial we learn how to fix bind2csv2 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.