How To Install guichan on Fedora 34
Introduction
In this tutorial we learn how to install guichan
on Fedora 34.
What is guichan
Guichan is a small, efficient C++ GUI library designed for games. It comes with a standard set of widgets and can use several different objects for displaying graphics and grabbing user input. guichan 0.8.2 23.fc34 x86_64 161 k guichan-0.8.2-23.fc34.src.rpm fedora Portable C++ GUI library for games using Allegro, SDL and OpenGL http BSD Guichan is a small, efficient C++ GUI library designed for games. It comes with a standard set of widgets and can use several different objects for displaying graphics and grabbing user input.
We can use yum
or dnf
to install guichan
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install guichan.
Install guichan 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 guichan
using dnf
by running the following command:
sudo dnf -y install guichan
Install guichan 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 guichan
using yum
by running the following command:
sudo yum -y install guichan
How To Uninstall guichan on Fedora 34
To uninstall only the guichan
package we can use the following command:
sudo dnf remove guichan
guichan Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/989285c8da087b56773ab4f333814aebabf4c1
/usr/lib/.build-id/26
/usr/lib/.build-id/26/7ac97c5bf13d8ecf8615add3635e934281fab6
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/9965d61fb4091c50f915df91c281e82181a58c
/usr/lib/.build-id/32
/usr/lib/.build-id/32/373baf4c03ec6d4f6b07f49c31f75c25d6eefe
/usr/lib/libguichan-0.8.1.so.1
/usr/lib/libguichan-0.8.1.so.1.1.0
/usr/lib/libguichan_allegro-0.8.1.so.1
/usr/lib/libguichan_allegro-0.8.1.so.1.1.0
/usr/lib/libguichan_opengl-0.8.1.so.1
/usr/lib/libguichan_opengl-0.8.1.so.1.1.0
/usr/lib/libguichan_sdl-0.8.1.so.1
/usr/lib/libguichan_sdl-0.8.1.so.1.1.0
/usr/share/doc/guichan
/usr/share/doc/guichan/AUTHORS
/usr/share/doc/guichan/COPYING
/usr/share/doc/guichan/ChangeLog
/usr/share/doc/guichan/NEWS
/usr/share/doc/guichan/README
/usr/share/doc/guichan/TODO
/usr/lib/.build-id
/usr/lib/.build-id/06
/usr/lib/.build-id/06/e695ebc96031e6863e190c8b3f88dd3f7edff5
/usr/lib/.build-id/33
/usr/lib/.build-id/33/4b9b40a9844821a5a917e40e6419a658c747d6
/usr/lib/.build-id/8b
/usr/lib/.build-id/8b/8b006633c8026667a9b1f9a9c34839dc03a9c6
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/991182961464dbc8c6cc0fa7d7e90f6b7bb234
/usr/lib64/libguichan-0.8.1.so.1
/usr/lib64/libguichan-0.8.1.so.1.1.0
/usr/lib64/libguichan_allegro-0.8.1.so.1
/usr/lib64/libguichan_allegro-0.8.1.so.1.1.0
/usr/lib64/libguichan_opengl-0.8.1.so.1
/usr/lib64/libguichan_opengl-0.8.1.so.1.1.0
/usr/lib64/libguichan_sdl-0.8.1.so.1
/usr/lib64/libguichan_sdl-0.8.1.so.1.1.0
/usr/share/doc/guichan
/usr/share/doc/guichan/AUTHORS
/usr/share/doc/guichan/COPYING
/usr/share/doc/guichan/ChangeLog
/usr/share/doc/guichan/NEWS
/usr/share/doc/guichan/README
/usr/share/doc/guichan/TODO
References
- [guichan website](http://guichan.sourceforge.net http://guichan.sourceforge.net)
Summary
In this tutorial we learn how to install guichan
on Fedora 34 using yum and dnf.