How To Install unmo3 on Ubuntu 18.04

In this tutorial we learn how to install unmo3 on Ubuntu 18.04. unmo3 is Uncompress and extract samples from MO3 modules

Introduction

In this tutorial we learn how to install unmo3 on Ubuntu 18.04.

What is unmo3

unmo3 is:

The MO3 format means “MOdule with MP3”, because the main initial idea was to reduce the size of a module (in .mod, IT, XM) by compressing the samples using MPEG audio layer 3. The samples can be compressed using OGG, MP3, and two kind of specific lossless algorithms.

There are three methods to install unmo3 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 unmo3 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install unmo3

Install unmo3 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install unmo3 using apt by running the following command:

sudo apt -y install unmo3

Install unmo3 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 unmo3 using aptitude by running the following command:

sudo aptitude -y install unmo3

How To Uninstall unmo3 on Ubuntu 18.04

To uninstall only the unmo3 package we can use the following command:

sudo apt-get remove unmo3

Uninstall unmo3 And Its Dependencies

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

sudo apt-get -y autoremove unmo3

Remove unmo3 Configurations and Data

To remove unmo3 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge unmo3

Remove unmo3 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge unmo3

References

Summary

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