zdbsp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zdbsp: command not found
or when using sudo you get the following error message
sudo: zdbsp: command not found
Solutions to zdbsp: command not found
How To Fix zdbsp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zdbsp is provided by zdbsp package.
zdbsp is:
zdbsp is a node builder specially designed to be used with OpenGL ports of the DOOM game engine. It adheres to the “GL-Friendly Nodes” specification, which means it adds some new special nodes to a WAD file that makes it very easy (and fast!) for an OpenGL DOOM engine to compute the polygons needed for drawing the levels.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zdbsp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zdbsp.
sudo apt -y install zdbsp
Or if you have aptitude installed you can use the following command.
sudo aptitude install zdbsp
Summary
In this tutorial we learn how to fix zdbsp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.