How To Install lib3ds on Fedora 34
Introduction
In this tutorial we learn how to install lib3ds
on Fedora 34.
What is lib3ds
lib3ds is a free ANSI-C library for working with the popular “3ds” 3D model format. Supported platforms include GNU (autoconf, automake, libtool, make, GCC) on Unix and Cygwin, and MS Visual C++ 6.0. lib3ds loads and saves Atmosphere settings, Background settings, Shadow map settings, Viewport setting, Materials, Cameras, Lights, Meshes, Hierarchy, Animation keyframes. It also contains useful matrix, vector and quaternion mathematics tools. lib3ds usually integrates well with OpenGL. In addition, some diagnostic and conversion tools are included. lib3ds 1.3.0 34.fc34 x86_64 70 k lib3ds-1.3.0-34.fc34.src.rpm fedora 3D Studio file format library http LGPLv2+ lib3ds is a free ANSI-C library for working with the popular “3ds” 3D model format. Supported platforms include GNU (autoconf, automake, libtool, make, GCC) on Unix and Cygwin, and MS Visual C++ 6.0. lib3ds loads and saves Atmosphere settings, Background settings, Shadow map settings, Viewport setting, Materials, Cameras, Lights, Meshes, Hierarchy, Animation keyframes. It also contains useful matrix, vector and quaternion mathematics tools. lib3ds usually integrates well with OpenGL. In addition, some diagnostic and conversion tools are included.
We can use yum
or dnf
to install lib3ds
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lib3ds.
Install lib3ds 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 lib3ds
using dnf
by running the following command:
sudo dnf -y install lib3ds
Install lib3ds 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 lib3ds
using yum
by running the following command:
sudo yum -y install lib3ds
How To Uninstall lib3ds on Fedora 34
To uninstall only the lib3ds
package we can use the following command:
sudo dnf remove lib3ds
lib3ds Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/22
/usr/lib/.build-id/22/230ea08c04012ab5fbeb6600036a9e208681fe
/usr/lib/lib3ds-1.so.3
/usr/lib/lib3ds-1.so.3.0.0
/usr/share/doc/lib3ds
/usr/share/doc/lib3ds/AUTHORS
/usr/share/doc/lib3ds/ChangeLog
/usr/share/doc/lib3ds/README
/usr/share/licenses/lib3ds
/usr/share/licenses/lib3ds/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/4d1a90c447d09fb2df8591c260442ceb5c94a8
/usr/lib64/lib3ds-1.so.3
/usr/lib64/lib3ds-1.so.3.0.0
/usr/share/doc/lib3ds
/usr/share/doc/lib3ds/AUTHORS
/usr/share/doc/lib3ds/ChangeLog
/usr/share/doc/lib3ds/README
/usr/share/licenses/lib3ds
/usr/share/licenses/lib3ds/COPYING
References
- [lib3ds website](http://lib3ds.sourceforge.net http://lib3ds.sourceforge.net)
Summary
In this tutorial we learn how to install lib3ds
on Fedora 34 using yum and dnf.