How To Install nautilus-data on Ubuntu 20.04

In this tutorial we learn how to install nautilus-data on Ubuntu 20.04. nautilus-data is data files for nautilus data files for nautilus

Introduction

In this tutorial we learn how to install nautilus-data on Ubuntu 20.04.

What is nautilus-data

nautilus-data is:

Nautilus is the official file manager and graphical shell for the GNOME desktop.

This package contains pictures, localization files and other data needed by nautilus. Task: ubuntu-desktop-minimal, ubuntu-desktop

Package: nautilus-data Architecture: all Version: 1:3.36.1.1-1ubuntu2 Multi-Arch: foreign Priority: optional Section: gnome Source: nautilus Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian GNOME Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 148 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/n/nautilus/nautilus-data_3.36.1.1-1ubuntu2_all.deb Size: 10756 MD5sum: f95e7f2ce67f034dcea132071210befe SHA1: f761ea71fa36d9e0b8488d322a50e7b211336616 SHA256: 07b870458edc280886bb0db0b2a8560a2b2de2ce8fc23a910e97f4930bd4add6 Homepage: https://wiki.gnome.org/action/show/Apps/Nautilus Description-en: data files for nautilus Nautilus is the official file manager and graphical shell for the GNOME desktop.

This package contains pictures, localization files and other data needed by nautilus. Task: ubuntu-desktop-minimal, ubuntu-desktop

There are three methods to install nautilus-data on Ubuntu 20.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-data 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-data using apt-get by running the following command:

sudo apt-get -y install nautilus-data

Install nautilus-data Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install nautilus-data

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

sudo aptitude -y install nautilus-data

How To Uninstall nautilus-data on Ubuntu 20.04

To uninstall only the nautilus-data package we can use the following command:

sudo apt-get remove nautilus-data

Uninstall nautilus-data And Its Dependencies

To uninstall nautilus-data and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove nautilus-data

Remove nautilus-data Configurations and Data

To remove nautilus-data configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge nautilus-data

Remove nautilus-data configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge nautilus-data

References

Summary

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