How To Install libtwin on Fedora 34
Introduction
In this tutorial we learn how to install libtwin
on Fedora 34.
What is libtwin
With embedded systems gaining high resolution displays and powerful cpus, the desire for sophisticated graphical user interfaces can be realized in even the smallest of systems. While the cpupower available for a given power budget has increased dramatically, these tiny systems remain severely memory constrained. This unique environment presents interesting challenges in graphical system design and implementation. To explore this particular space, a new window system, Twin, has been developed. Using ideas from modern window systems in larger environments, Twin offers overlapping translucent windows, anti-aliased graphics and scalable fonts in a total memory budget of 100KB. libtwin 0.0.3 23.fc34 x86_64 84 k libtwin-0.0.3-23.fc34.src.rpm fedora Tiny Window System http LGPLv2+ With embedded systems gaining high resolution displays and powerful cpus, the desire for sophisticated graphical user interfaces can be realized in even the smallest of systems. While the cpupower available for a given power budget has increased dramatically, these tiny systems remain severely memory constrained. This unique environment presents interesting challenges in graphical system design and implementation. To explore this particular space, a new window system, Twin, has been developed. Using ideas from modern window systems in larger environments, Twin offers overlapping translucent windows, anti-aliased graphics and scalable fonts in a total memory budget of 100KB.
We can use yum
or dnf
to install libtwin
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libtwin.
Install libtwin 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 libtwin
using dnf
by running the following command:
sudo dnf -y install libtwin
Install libtwin 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 libtwin
using yum
by running the following command:
sudo yum -y install libtwin
How To Uninstall libtwin on Fedora 34
To uninstall only the libtwin
package we can use the following command:
sudo dnf remove libtwin
libtwin Package Contents on Fedora 34
/usr/bin/twin_ttf
/usr/lib/.build-id
/usr/lib/.build-id/03
/usr/lib/.build-id/03/17aa93355ee39b73eb200655cd57c81c8b66a0
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/4c51cc9b0377a21555ffb34b4f5910a6966880
/usr/lib64/libtwin.so.0
/usr/lib64/libtwin.so.0.0.1
/usr/share/doc/libtwin
/usr/share/doc/libtwin/COPYING
/usr/share/doc/libtwin/ChangeLog
/usr/bin/twin_ttf
/usr/lib/.build-id
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/13153f0f6bb2036d09381808e3f6bc768925b0
/usr/lib/.build-id/ea
/usr/lib/.build-id/ea/5bbdb7febe89d21643cb1af3dabf0051d3d2c0
/usr/lib/libtwin.so.0
/usr/lib/libtwin.so.0.0.1
/usr/share/doc/libtwin
/usr/share/doc/libtwin/COPYING
/usr/share/doc/libtwin/ChangeLog
References
- [libtwin website](http://ozlabs.org/~jk/projects/petitboot/ http://ozlabs.org/~jk/projects/petitboot/)
Summary
In this tutorial we learn how to install libtwin
on Fedora 34 using yum and dnf.