How To Install nautilus-script-audio-convert on Ubuntu 18.04

In this tutorial we learn how to install nautilus-script-audio-convert on Ubuntu 18.04. nautilus-script-audio-convert is A nautilus audio converter script

Introduction

In this tutorial we learn how to install nautilus-script-audio-convert on Ubuntu 18.04.

What is nautilus-script-audio-convert

nautilus-script-audio-convert is:

audio convert is a script that converts between WAV, Ogg, MP3, MPC, FLAC, APE, AAC, and WMA files. It has an easy-to-use interface that makes it possible to fill in the tags for a few formats, copy the tags from input files into the new files, and choose the quality of compression.

There are three methods to install nautilus-script-audio-convert 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 nautilus-script-audio-convert Using apt-get

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

sudo apt-get update

After updating apt database, We can install nautilus-script-audio-convert using apt-get by running the following command:

sudo apt-get -y install nautilus-script-audio-convert

Install nautilus-script-audio-convert Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install nautilus-script-audio-convert using apt by running the following command:

sudo apt -y install nautilus-script-audio-convert

Install nautilus-script-audio-convert 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 nautilus-script-audio-convert using aptitude by running the following command:

sudo aptitude -y install nautilus-script-audio-convert

How To Uninstall nautilus-script-audio-convert on Ubuntu 18.04

To uninstall only the nautilus-script-audio-convert package we can use the following command:

sudo apt-get remove nautilus-script-audio-convert

Uninstall nautilus-script-audio-convert And Its Dependencies

To uninstall nautilus-script-audio-convert and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove nautilus-script-audio-convert

Remove nautilus-script-audio-convert Configurations and Data

To remove nautilus-script-audio-convert configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge nautilus-script-audio-convert

Remove nautilus-script-audio-convert configuration, data, and all of its dependencies

We can use the following command to remove nautilus-script-audio-convert configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge nautilus-script-audio-convert

References

Summary

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