How To Install libreoffice-ure on CentOS 7

In this tutorial we learn how to install libreoffice-ure on CentOS 7. libreoffice-ure is UNO Runtime Environment

Introduction

In this tutorial we learn how to install libreoffice-ure on CentOS 7.

What is libreoffice-ure

UNO is the component model of LibreOffice. UNO offers interoperability between programming languages, other components models and hardware architectures, either in process or over process boundaries, in the Intranet as well as in the Internet. UNO components may be implemented in and accessed from any programming language for which a UNO implementation (AKA language binding) and an appropriate bridge or adapter exists

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

Install libreoffice-ure on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install libreoffice-ure using yum by running the following command:

sudo yum -y install libreoffice-ure

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

sudo dnf -y install libreoffice-ure

How To Uninstall libreoffice-ure on CentOS 7

To uninstall only the libreoffice-ure package we can use the following command:

sudo dnf remove libreoffice-ure

References

Summary

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