glbsp command not found

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

Introduction

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

glbsp: command not found

or when using sudo you get the following error message

sudo: glbsp: command not found

Solutions to glbsp: command not found

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

In Ubuntu glbsp is provided by glbsp package.

glbsp is:

glBSP 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.

There are many DOOM ports that understand the GL Nodes which glBSP creates, including EDGE, the Doomsday engine (JDOOM), Doom3D, PrBoom, and Vavoom.

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

sudo apt-get -y install glbsp

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

You can also use apt command to install glbsp.

sudo apt -y install glbsp

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

sudo aptitude install glbsp

Summary

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