How To Install networking-sfc-common on Ubuntu 20.04

In this tutorial we learn how to install networking-sfc-common on Ubuntu 20.04. networking-sfc-common is OpenStack virtual network service - SFC extension OpenStack virtual network service - SFC extension

Introduction

In this tutorial we learn how to install networking-sfc-common on Ubuntu 20.04.

What is networking-sfc-common

networking-sfc-common is:

Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

This package contains the common configuration files for the Service Function Chaining (SFC) extension.

Package: networking-sfc-common Architecture: all Version: 10.0.0~b3~git2020032510.8417568-0ubuntu1 Priority: optional Section: universe/python Source: networking-sfc Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 15 Breaks: python-networking-sfc (« 7.0.0~b2-0ubuntu2~) Replaces: python-networking-sfc (« 7.0.0~b2-0ubuntu2~) Filename: pool/universe/n/networking-sfc/networking-sfc-common_10.0.0~b3~git2020032510.8417568-0ubuntu1_all.deb Size: 3152 MD5sum: 0412f11ce05512ba4187222b209d360c SHA1: d5ff0225d469c23f44535d0df6eb61632472ce50 SHA256: 8d3bbf5fe4a26cd92e41486baeaf2de1838fd2c50c8ff90cd9d5a86fbaffa888 Homepage: http://github.com/openstack/networking-sfc Description-en: OpenStack virtual network service - SFC extension Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

This package contains the common configuration files for the Service Function Chaining (SFC) extension.

There are three methods to install networking-sfc-common 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 networking-sfc-common Using apt-get

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

sudo apt-get update

After updating apt database, We can install networking-sfc-common using apt-get by running the following command:

sudo apt-get -y install networking-sfc-common

Install networking-sfc-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install networking-sfc-common using apt by running the following command:

sudo apt -y install networking-sfc-common

Install networking-sfc-common 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 networking-sfc-common using aptitude by running the following command:

sudo aptitude -y install networking-sfc-common

How To Uninstall networking-sfc-common on Ubuntu 20.04

To uninstall only the networking-sfc-common package we can use the following command:

sudo apt-get remove networking-sfc-common

Uninstall networking-sfc-common And Its Dependencies

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

sudo apt-get -y autoremove networking-sfc-common

Remove networking-sfc-common Configurations and Data

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

sudo apt-get -y purge networking-sfc-common

Remove networking-sfc-common configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge networking-sfc-common

References

Summary

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