How To Install python-os-refresh-config on Debian 10

Learn how to install python-os-refresh-config on Debian 10 with this tutorial. python-os-refresh-config is refresh system configuration of an OpenStack TripleO node

Introduction

In this tutorial we learn how to install python-os-refresh-config on Debian 10.

What is python-os-refresh-config

python-os-refresh-config is:

Runs through all of the phases to ensure configuration is applied and enabled on a machine running a TripleO undercloud. Will exit with an error if any phase has a problem.

There are three methods to install python-os-refresh-config on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python-os-refresh-config Using apt-get

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

sudo apt-get update

After updating apt database, We can install python-os-refresh-config using apt-get by running the following command:

sudo apt-get -y install python-os-refresh-config

Install python-os-refresh-config Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-os-refresh-config using apt by running the following command:

sudo apt -y install python-os-refresh-config

Install python-os-refresh-config 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python-os-refresh-config using aptitude by running the following command:

sudo aptitude -y install python-os-refresh-config

How To Uninstall python-os-refresh-config on Debian 10

To uninstall only the python-os-refresh-config package we can use the following command:

sudo apt-get remove python-os-refresh-config

Uninstall python-os-refresh-config And Its Dependencies

To uninstall python-os-refresh-config and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove python-os-refresh-config

Remove python-os-refresh-config Configurations and Data

To remove python-os-refresh-config configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge python-os-refresh-config

Remove python-os-refresh-config configuration, data, and all of its dependencies

We can use the following command to remove python-os-refresh-config configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-os-refresh-config

Dependencies

python-os-refresh-config have the following dependencies:

References

Summary

In this tutorial we learn how to install python-os-refresh-config package on Debian 10 using different package management tools: apt, apt-get and aptitude.