How To Install python3-designate-dashboard on Ubuntu 20.04

In this tutorial we learn how to install python3-designate-dashboard on Ubuntu 20.04. python3-designate-dashboard is OpenStack DNS as a Service - Python 3 dashboard plugin OpenStack DNS as a Service - Python 3 dashboard plugin

Introduction

In this tutorial we learn how to install python3-designate-dashboard on Ubuntu 20.04.

What is python3-designate-dashboard

python3-designate-dashboard is:

Designate provides DNSaaS services for OpenStack. It provides a multi-tenant REST API for domain & record management. It is Integrated with Keystone for authentication, and provides a framework in place to integrate with Nova and Neutron notifications (for auto-generated records). Designate supports PowerDNS and Bind9 out of the box.

This package contains the Python 3 OpenStack dashboard plugin.

Package: python3-designate-dashboard Architecture: all Version: 10.0.0~b3~git2020032617.f4cf36e-0ubuntu1 Priority: extra Section: universe/python Source: designate-dashboard Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 250 Depends: openstack-dashboard (>= 3:18.0.0), python3-babel (>= 2.3.4), python3-designateclient (>= 2.7.0), python3-django (>= 2:2.2), python3-django-horizon (>= 3:18.0.0), python3-oslo.log (>= 3.36.0), python3-pbr (>= 2.0.0), python3-pkg-resources, python3:any Filename: pool/universe/d/designate-dashboard/python3-designate-dashboard_10.0.0~b3~git2020032617.f4cf36e-0ubuntu1_all.deb Size: 25452 MD5sum: aea76568786398447ac0f76720b36733 SHA1: b9a8722ed690a373b197de79c8c9fb66841d19df SHA256: e77aa78fa2cec4fbac3e5854f6b92ddd36c82397a698578198edf208c4a07c53 Homepage: https://github.com/stackforge/designate-dashboard Description-en: OpenStack DNS as a Service - Python 3 dashboard plugin Designate provides DNSaaS services for OpenStack. It provides a multi-tenant REST API for domain & record management. It is Integrated with Keystone for authentication, and provides a framework in place to integrate with Nova and Neutron notifications (for auto-generated records). Designate supports PowerDNS and Bind9 out of the box.

This package contains the Python 3 OpenStack dashboard plugin.

There are three methods to install python3-designate-dashboard 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-designate-dashboard 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-designate-dashboard using apt-get by running the following command:

sudo apt-get -y install python3-designate-dashboard

Install python3-designate-dashboard Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-designate-dashboard

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

sudo aptitude -y install python3-designate-dashboard

How To Uninstall python3-designate-dashboard on Ubuntu 20.04

To uninstall only the python3-designate-dashboard package we can use the following command:

sudo apt-get remove python3-designate-dashboard

Uninstall python3-designate-dashboard And Its Dependencies

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

sudo apt-get -y autoremove python3-designate-dashboard

Remove python3-designate-dashboard Configurations and Data

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

sudo apt-get -y purge python3-designate-dashboard

Remove python3-designate-dashboard configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-designate-dashboard

References

Summary

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