How To Install woof-doom on Debian 12

Learn how to install woof-doom on Debian 12 with this tutorial. woof-doom is Doom source port MBF targeted at modern systems

Introduction

In this tutorial we learn how to install woof-doom on Debian 12.

What is woof-doom

woof-doom is:

Woof! is a continuation of Lee Killough’s Doom source port MBF targeted at modern systems.

MBF stands for “Marine’s Best Friend” and is widely regarded as the successor of the Boom source port by TeamTNT. It serves as the code base for popular Doom source ports such as PrBoom+/DSDA-Doom or The Eternity Engine. As the original engine was limited to run only under MS-DOS, it has been ported to Windows by Team Eternity under the name WinMBF in 2004. Woof! is developed based on the WinMBF code with the aim to make MBF more widely available and convenient to use on modern systems.

To achieve this goal, this source port is less strict regarding its faithfulness to the original MBF. It is focused on quality-of-life enhancements, bug fixes and compatibility improvements. However, all changes have been introduced in good faith that they are in line with the original author’s intentions and even for the trained eye, this source port should still look very familiar to the original MBF.

In summary, this project’s goal is to forward-port MBF.EXE from DOS to 21st century and remove all the stumbling blocks on the way. Furthermore, just as MBF was ahead of its time, this project dedicates itself to early adoption of new modding features such as DEHEXTRA+DSDHacked, UMAPINFO and MBF21.

There are three methods to install woof-doom on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install woof-doom Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install woof-doom using apt-get by running the following command:

sudo apt-get -y install woof-doom

Install woof-doom Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install woof-doom using apt by running the following command:

sudo apt -y install woof-doom

Install woof-doom Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install woof-doom using aptitude by running the following command:

sudo aptitude -y install woof-doom

How To Uninstall woof-doom on Debian 12

To uninstall only the woof-doom package we can use the following command:

sudo apt-get remove woof-doom

Uninstall woof-doom And Its Dependencies

To uninstall woof-doom and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove woof-doom

Remove woof-doom Configurations and Data

To remove woof-doom configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge woof-doom

Remove woof-doom configuration, data, and all of its dependencies

We can use the following command to remove woof-doom configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge woof-doom

Dependencies

woof-doom have the following dependencies:

References

Summary

In this tutorial we learn how to install woof-doom package on Debian 12 using different package management tools: apt, apt-get and aptitude.