How To Install python3-manila-ui on Ubuntu 20.04

In this tutorial we learn how to install python3-manila-ui on Ubuntu 20.04. python3-manila-ui is OpenStack shared file system as a service - Python 3 Dashboard plugin OpenStack shared file system as a service - Python 3 Dashboard plugin

Introduction

In this tutorial we learn how to install python3-manila-ui on Ubuntu 20.04.

What is python3-manila-ui

python3-manila-ui is:

Manila is an OpenStack project to provide Shared Filesystems as a service. It provides coordinated access to shared or distributed file systems. While the primary consumption of file shares would be across OpenStack Compute instances, the service is also intended to be accessible as an independent capability in line with the modular design established by other OpenStack services. Manila is extensible for multiple backends (to support vendor or file system specific nuances / capabilities) and accommodates any of a variety of shared or distributed file system types.

This package contains the Python 3 Manila OpenStack dashboard plugin.

Package: python3-manila-ui Architecture: all Version: 1:2.19.2~git2020041511.a2dcb0e-0ubuntu1 Priority: optional Section: universe/python Source: manila-ui Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1495 Depends: openstack-dashboard (>= 3:18.0.0), python3-babel (>= 2.3.4), python3-django (>= 2:2.2), python3-django-compressor (>= 2.0), python3-django-horizon (>= 3:18.0.0), python3-iso8601 (>= 0.1.11), python3-keystoneclient (>= 1:3.8.0), python3-manilaclient (>= 1.29.0), python3-oslo.utils (>= 3.33.0), python3-pbr (>= 2.0.0), python3-six (>= 1.10.0), python3:any Filename: pool/universe/m/manila-ui/python3-manila-ui_2.19.2~git2020041511.a2dcb0e-0ubuntu1_all.deb Size: 132264 MD5sum: b6603e5cff135f26076a7dcdde2df09b SHA1: f7e615ad707a59b2e8b9cfb49c7e5f87fbc2159d SHA256: 500cbbf2359fda1c93e85d8b0b130c99179a111532af3c4afa016a7612411856 Homepage: https://github.com/hp-storage/manila-ui Description-en: OpenStack shared file system as a service - Python 3 Dashboard plugin Manila is an OpenStack project to provide Shared Filesystems as a service. It provides coordinated access to shared or distributed file systems. While the primary consumption of file shares would be across OpenStack Compute instances, the service is also intended to be accessible as an independent capability in line with the modular design established by other OpenStack services. Manila is extensible for multiple backends (to support vendor or file system specific nuances / capabilities) and accommodates any of a variety of shared or distributed file system types.

This package contains the Python 3 Manila OpenStack dashboard plugin.

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

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

sudo apt-get update

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

sudo apt-get -y install python3-manila-ui

Install python3-manila-ui Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-manila-ui using apt by running the following command:

sudo apt -y install python3-manila-ui

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

sudo aptitude -y install python3-manila-ui

How To Uninstall python3-manila-ui on Ubuntu 20.04

To uninstall only the python3-manila-ui package we can use the following command:

sudo apt-get remove python3-manila-ui

Uninstall python3-manila-ui And Its Dependencies

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

sudo apt-get -y autoremove python3-manila-ui

Remove python3-manila-ui Configurations and Data

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

sudo apt-get -y purge python3-manila-ui

Remove python3-manila-ui configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-manila-ui

References

Summary

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