How To Install OpenSceneGraph on Fedora 36

In this tutorial we learn how to install OpenSceneGraph in Fedora 36. OpenSceneGraph is High performance real-time graphics toolkit

Introduction

In this tutorial we learn how to install OpenSceneGraph on Fedora 36.

What is OpenSceneGraph

The OpenSceneGraph is an OpenSource, cross platform graphics toolkit for the development of high performance graphics applications such as flight simulators, games, virtual reality and scientific visualization. Based around the concept of a SceneGraph, it provides an object oriented framework on top of OpenGL freeing the developer from implementing and optimizing low level graphics calls, and provides many additional utilities for rapid development of graphics applications.

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

Install OpenSceneGraph on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install OpenSceneGraph

Install OpenSceneGraph on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install OpenSceneGraph

How To Uninstall OpenSceneGraph on Fedora 36

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

sudo dnf remove OpenSceneGraph

OpenSceneGraph Package Contents on Fedora 36

/usr/bin/osgarchive
/usr/bin/osgconv
/usr/bin/osgfilecache
/usr/bin/osgversion
/usr/bin/osgviewer
/usr/bin/present3D
/usr/lib/.build-id
/usr/lib/.build-id/00
/usr/lib/.build-id/00/a65d7306f51356873263e50bd2e2d728f879d2
/usr/lib/.build-id/24
/usr/lib/.build-id/24/ae12697ab91b049c685fc56cdf929c12f9d8ed
/usr/lib/.build-id/41
/usr/lib/.build-id/41/3aa0e394b10781e1f9ccf3ccd7fdad14b9bdbe
/usr/lib/.build-id/50
/usr/lib/.build-id/50/dc9a40f61934ae2006111109c469c0477a2871
/usr/lib/.build-id/58
/usr/lib/.build-id/58/1bcdd8822a9f7cca9e339fb7d37246332d7fd7
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/bebe4e877009c19126f44269b1f18c017bbaea

References

Summary

In this tutorial we learn how to install OpenSceneGraph on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).