How to Install and Uninstall gensio.x86_64 Package on Fedora 39

Last updated: October 03,2024

1. Install "gensio.x86_64" package

This guide let you learn how to install gensio.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install gensio.x86_64

2. Uninstall "gensio.x86_64" package

In this section, we are going to explain the necessary steps to uninstall gensio.x86_64 on Fedora 39:

$ sudo dnf remove gensio.x86_64 $ sudo dnf autoremove

3. Information about the gensio.x86_64 package on Fedora 39

Last metadata expiration check: 4:13:55 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : gensio
Version : 2.8.3
Release : 1.fc39
Architecture : x86_64
Size : 2.9 M
Source : gensio-2.8.3-1.fc39.src.rpm
Repository : updates
Summary : General Stream I/O
URL : https://github.com/cminyard/gensio
License : GPL-2.0-only AND LGPL-2.1-only AND Apache-2.0
Description : This is gensio (pronounced gen'-see-oh), a framework for giving a consistent
: view of various stream (and packet) I/O types. You create a gensio object (or
: a gensio), and you can use that gensio without having to know too much about
: what is going on underneath. You can stack gensio on top of another one to add
: protocol functionality. For instance, you can create a TCP gensio, stack SSL on
: top of that, and stack Telnet on top of that. It supports a number of network
: I/O and serial ports. gensios that stack on other gensios are called filters.
:
: You can do the same thing with receiving ports. You can set up a gensio
: accepter (accepter) to accept connections in a stack. So in our previous
: example, you can setup TCP to listen on a specific port and automatically stack
: SSL and Telnet on top when the connection comes in, and you are not informed
: until everything is ready.
:
: A very important feature of gensio is that it makes establishing encrypted and
: authenticated connections much easier than without it. Beyond basic key
: management, it's really no harder than TCP or anything else. It offers extended
: flexibility for controlling the authentication process if needed. It's really
: easy to use.
:
: Note that the gensio(5) man page has more details on individual gensio types.