How To Install neutron-plugin-linuxbridge-agent on Debian 9

In this tutorial we learn how to install neutron-plugin-linuxbridge-agent on Debian 9. neutron-plugin-linuxbridge-agent is transitional dummy package for switching to Neutron Linuxbridge agent

Introduction

In this tutorial we learn how to install neutron-plugin-linuxbridge-agent on Debian 9.

What is neutron-plugin-linuxbridge-agent

neutron-plugin-linuxbridge-agent is:

This is a transitional dummy package due to the move of the Linuxbridge agent from core plugin to ML2 MechanismDriver. Once you have upgraded, this package can safely be removed. This package provides a transition path from neutron-plugin-linuxbridge-agent to neutron-linuxbridge-agent.

There are three methods to install neutron-plugin-linuxbridge-agent on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install neutron-plugin-linuxbridge-agent Using apt-get

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

sudo apt-get update

After updating apt database, We can install neutron-plugin-linuxbridge-agent using apt-get by running the following command:

sudo apt-get -y install neutron-plugin-linuxbridge-agent

Install neutron-plugin-linuxbridge-agent Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install neutron-plugin-linuxbridge-agent using apt by running the following command:

sudo apt -y install neutron-plugin-linuxbridge-agent

Install neutron-plugin-linuxbridge-agent 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 neutron-plugin-linuxbridge-agent using aptitude by running the following command:

sudo aptitude -y install neutron-plugin-linuxbridge-agent

How To Uninstall neutron-plugin-linuxbridge-agent on Debian 9

To uninstall only the neutron-plugin-linuxbridge-agent package we can use the following command:

sudo apt-get remove neutron-plugin-linuxbridge-agent

Uninstall neutron-plugin-linuxbridge-agent And Its Dependencies

To uninstall neutron-plugin-linuxbridge-agent and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove neutron-plugin-linuxbridge-agent

Remove neutron-plugin-linuxbridge-agent Configurations and Data

To remove neutron-plugin-linuxbridge-agent configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge neutron-plugin-linuxbridge-agent

Remove neutron-plugin-linuxbridge-agent configuration, data, and all of its dependencies

We can use the following command to remove neutron-plugin-linuxbridge-agent configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge neutron-plugin-linuxbridge-agent

Dependencies

neutron-plugin-linuxbridge-agent have the following dependencies:

References

Summary

In this tutorial we learn how to install neutron-plugin-linuxbridge-agent package on Debian 9 using different package management tools: apt, apt-get and aptitude.