How To Install mISDN on CentOS 7

In this tutorial we learn how to install mISDN on CentOS 7. mISDN is Userspace part of Modular ISDN stack

Introduction

In this tutorial we learn how to install mISDN on CentOS 7.

What is mISDN

mISDN (modular ISDN) is intended to be the new ISDN stack for the Linux 2.6 kernel, from the maintainer of the existing isdn4linux code. This package contains the userspace libraries required to interface directly to mISDN.

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

Install mISDN on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install mISDN using yum by running the following command:

sudo yum -y install mISDN

Install mISDN 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 mISDN using dnf by running the following command:

sudo dnf -y install mISDN

How To Uninstall mISDN on CentOS 7

To uninstall only the mISDN package we can use the following command:

sudo dnf remove mISDN

References

Summary

In this tutorial we learn how to install mISDN on CentOS 7 using yum and dnf.