How To Install darkradiant-plugins-darkmod on Ubuntu 18.04

In this tutorial we learn how to install darkradiant-plugins-darkmod on Ubuntu 18.04. darkradiant-plugins-darkmod is DarkMod-specific plugins for DarkRadiant

Introduction

In this tutorial we learn how to install darkradiant-plugins-darkmod on Ubuntu 18.04.

What is darkradiant-plugins-darkmod

darkradiant-plugins-darkmod is:

DarkRadiant is a 3D map and level editor for games based on the idtech4 engines. The software is based on GtkRadiant and focuses on the games DOOM3 and The Dark Mod. Other games based on the same engine, like Quake 4, might be editable too, but are not explicitly supported.

This package provides the plugins necessary to edit levels for The Dark Mod.

There are three methods to install darkradiant-plugins-darkmod on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install darkradiant-plugins-darkmod Using apt-get

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

sudo apt-get update

After updating apt database, We can install darkradiant-plugins-darkmod using apt-get by running the following command:

sudo apt-get -y install darkradiant-plugins-darkmod

Install darkradiant-plugins-darkmod Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install darkradiant-plugins-darkmod using apt by running the following command:

sudo apt -y install darkradiant-plugins-darkmod

Install darkradiant-plugins-darkmod 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install darkradiant-plugins-darkmod using aptitude by running the following command:

sudo aptitude -y install darkradiant-plugins-darkmod

How To Uninstall darkradiant-plugins-darkmod on Ubuntu 18.04

To uninstall only the darkradiant-plugins-darkmod package we can use the following command:

sudo apt-get remove darkradiant-plugins-darkmod

Uninstall darkradiant-plugins-darkmod And Its Dependencies

To uninstall darkradiant-plugins-darkmod and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove darkradiant-plugins-darkmod

Remove darkradiant-plugins-darkmod Configurations and Data

To remove darkradiant-plugins-darkmod configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge darkradiant-plugins-darkmod

Remove darkradiant-plugins-darkmod configuration, data, and all of its dependencies

We can use the following command to remove darkradiant-plugins-darkmod configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge darkradiant-plugins-darkmod

References

Summary

In this tutorial we learn how to install darkradiant-plugins-darkmod package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.