How To Install libvirt-bash-completion on CentOS 7

In this tutorial we learn how to install libvirt-bash-completion on CentOS 7. libvirt-bash-completion is Bash completion script

Introduction

In this tutorial we learn how to install libvirt-bash-completion on CentOS 7.

What is libvirt-bash-completion

Bash completion script stub.

We can use yum or dnf to install libvirt-bash-completion on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libvirt-bash-completion.

Install libvirt-bash-completion on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install libvirt-bash-completion using yum by running the following command:

sudo yum -y install libvirt-bash-completion

Install libvirt-bash-completion on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install libvirt-bash-completion using dnf by running the following command:

sudo dnf -y install libvirt-bash-completion

How To Uninstall libvirt-bash-completion on CentOS 7

To uninstall only the libvirt-bash-completion package we can use the following command:

sudo dnf remove libvirt-bash-completion

References

Summary

In this tutorial we learn how to install libvirt-bash-completion on CentOS 7 using yum and dnf.