How To Install gstream on Fedora 34
Introduction
In this tutorial we learn how to install gstream
on Fedora 34.
What is gstream
gstream is a C++ add-on library for Allegro. Its main purpose is to provide a simplified syntax for Allegro’s keyboard and text functions for input and output, so that you can treat a graphical mode as a console. gstream 1.6 25.fc34 x86_64 26 k gstream-1.6-25.fc34.src.rpm fedora Simplified stream output/input for Allegro http Giftware gstream is a C++ add-on library for Allegro. Its main purpose is to provide a simplified syntax for Allegro’s keyboard and text functions for input and output, so that you can treat a graphical mode as a console.
We can use yum
or dnf
to install gstream
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gstream.
Install gstream 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 gstream
using dnf
by running the following command:
sudo dnf -y install gstream
Install gstream 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 gstream
using yum
by running the following command:
sudo yum -y install gstream
How To Uninstall gstream on Fedora 34
To uninstall only the gstream
package we can use the following command:
sudo dnf remove gstream
gstream Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/23
/usr/lib/.build-id/23/fff0ee961d2c08b7c89e646f19fefcef28527b
/usr/lib/libgstrm.so.0
/usr/share/doc/gstream
/usr/share/doc/gstream/NEWS
/usr/share/doc/gstream/README
/usr/lib/.build-id
/usr/lib/.build-id/84
/usr/lib/.build-id/84/becf8f205cee388e45842931cc15e4c8944711
/usr/lib64/libgstrm.so.0
/usr/share/doc/gstream
/usr/share/doc/gstream/NEWS
/usr/share/doc/gstream/README
References
- [gstream website](http://allegro.molhanec.net/gstream.html http://allegro.molhanec.net/gstream.html)
Summary
In this tutorial we learn how to install gstream
on Fedora 34 using yum and dnf.