How To Install 4diac-forte on CentOS 7

In this tutorial we learn how to install 4diac-forte on CentOS 7. 4diac-forte is IEC 61499 runtime environment

Introduction

In this tutorial we learn how to install 4diac-forte on CentOS 7.

What is 4diac-forte

The 4DIAC runtime environment (4DIAC-RTE, FORTE) is a small portable implementation of an IEC 61499 runtime environment targeting small embedded control devices (16/32 Bit), implemented in C++. It supports online-reconfiguration of its applications and the real-time capable execution of all function block types provided by the IEC 61499 standard.

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

Install 4diac-forte on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install 4diac-forte using yum by running the following command:

sudo yum -y install 4diac-forte

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

sudo dnf -y install 4diac-forte

How To Uninstall 4diac-forte on CentOS 7

To uninstall only the 4diac-forte package we can use the following command:

sudo dnf remove 4diac-forte

References

Summary

In this tutorial we learn how to install 4diac-forte on CentOS 7 using yum and dnf.