How To Install GLee on Fedora 34
Introduction
In this tutorial we learn how to install GLee on Fedora 34.
What is GLee
GLee (GL Easy Extension library) is a free cross-platform extension loading library for OpenGL. It provides seamless support for OpenGL functions up to version 3.0 and 399 extensions. GLee 5.4.0 19.fc34 x86_64 53 k GLee-5.4.0-19.fc34.src.rpm fedora GL Easy Extension library http BSD GLee (GL Easy Extension library) is a free cross-platform extension loading library for OpenGL. It provides seamless support for OpenGL functions up to version 3.0 and 399 extensions.
We can use yum or dnf to install GLee on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install GLee.
Install GLee 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 GLee using dnf by running the following command:
sudo dnf -y install GLee
Install GLee 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 GLee using yum by running the following command:
sudo yum -y install GLee
How To Uninstall GLee on Fedora 34
To uninstall only the GLee package we can use the following command:
sudo dnf remove GLee
GLee Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/43
/usr/lib/.build-id/43/271be351949fe184ea02c3624e8d01ed96fd2c
/usr/lib/libGLee.so.5
/usr/lib/libGLee.so.5.4.0
/usr/share/doc/GLee
/usr/share/doc/GLee/readme.txt
/usr/lib/.build-id
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/554b0e4efe0a44a856e068e39f44d9b4d00ea3
/usr/lib64/libGLee.so.5
/usr/lib64/libGLee.so.5.4.0
/usr/share/doc/GLee
/usr/share/doc/GLee/readme.txt
References
- [GLee website](http://elf-stone.com/glee.php http://elf-stone.com/glee.php)
Summary
In this tutorial we learn how to install GLee on Fedora 34 using yum and dnf.