How To Install ode on Fedora 34

ode is High performance library for simulating rigid body dynamics High performance library for simulating rigid body dynamics

Introduction

In this tutorial we learn how to install ode on Fedora 34.

What is ode

ODE is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. It has advanced joint types and integrated collision detection with friction. ODE is useful for simulating vehicles, objects in virtual reality environments and virtual creatures. It is currently used in many computer games, 3D authoring tools and simulation tools. ode 0.14 13.fc34 x86_64 443 k ode-0.14-13.fc34.src.rpm fedora High performance library for simulating rigid body dynamics https BSD or LGPLv2+ ODE is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. It has advanced joint types and integrated collision detection with friction. ODE is useful for simulating vehicles, objects in virtual reality environments and virtual creatures. It is currently used in many computer games, 3D authoring tools and simulation tools.

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

Install ode on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install ode

Install ode on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install ode

How To Uninstall ode on Fedora 34

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

sudo dnf remove ode

ode Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/07
/usr/lib/.build-id/07/bce7310b9248490d380d92593db17d531e0a08
/usr/lib64/libode.so.4
/usr/lib64/libode.so.4.1.1
/usr/share/doc/ode
/usr/share/doc/ode/CHANGELOG.txt
/usr/share/doc/ode/README.md
/usr/share/licenses/ode
/usr/share/licenses/ode/COPYING
/usr/share/licenses/ode/LIBCCD-LICENSE.TXT
/usr/share/licenses/ode/LICENSE-BSD.TXT
/usr/share/licenses/ode/LICENSE.TXT
/usr/share/licenses/ode/OPCODE-COPYING
/usr/share/licenses/ode/OU-LICENSE-BSD.TXT
/usr/share/licenses/ode/OU-LICENSE-LESSER.TXT
/usr/share/licenses/ode/OU-LICENSE-ZLIB.TXT
/usr/share/licenses/ode/OU-LICENSE.TXT
/usr/lib/.build-id
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/69b73ce403a737c16ca12e779ffbe6743a1b21
/usr/lib/libode.so.4
/usr/lib/libode.so.4.1.1
/usr/share/doc/ode
/usr/share/doc/ode/CHANGELOG.txt
/usr/share/doc/ode/README.md
/usr/share/licenses/ode
/usr/share/licenses/ode/COPYING
/usr/share/licenses/ode/LIBCCD-LICENSE.TXT
/usr/share/licenses/ode/LICENSE-BSD.TXT
/usr/share/licenses/ode/LICENSE.TXT
/usr/share/licenses/ode/OPCODE-COPYING
/usr/share/licenses/ode/OU-LICENSE-BSD.TXT
/usr/share/licenses/ode/OU-LICENSE-LESSER.TXT
/usr/share/licenses/ode/OU-LICENSE-ZLIB.TXT
/usr/share/licenses/ode/OU-LICENSE.TXT

References

Summary

In this tutorial we learn how to install ode on Fedora 34 using yum and dnf.