How To Install djmount on Ubuntu 18.04

In this tutorial we learn how to install djmount on Ubuntu 18.04. djmount is file system client for mounting network media servers

Introduction

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

What is djmount

djmount is:

This package provides a client for Universal Plug’n’Play (UPnP) Audio-Visual MediaServers. It discovers all compatible UPnP AV devices on the network automatically and mounts their media content as a file system using FUSE.

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

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

sudo apt-get update

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

sudo apt-get -y install djmount

Install djmount Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install djmount

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

sudo aptitude -y install djmount

How To Uninstall djmount on Ubuntu 18.04

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

sudo apt-get remove djmount

Uninstall djmount And Its Dependencies

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

sudo apt-get -y autoremove djmount

Remove djmount Configurations and Data

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

sudo apt-get -y purge djmount

Remove djmount configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge djmount

References

Summary

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