How to Install and Uninstall gensio.x86_64 Package on Oracle Linux 9

Last updated: October 06,2024

1. Install "gensio.x86_64" package

Please follow the guidance below to install gensio.x86_64 on Oracle Linux 9

$ sudo dnf update $ sudo dnf install gensio.x86_64

2. Uninstall "gensio.x86_64" package

Please follow the guidance below to uninstall gensio.x86_64 on Oracle Linux 9:

$ sudo dnf remove gensio.x86_64 $ sudo dnf autoremove

3. Information about the gensio.x86_64 package on Oracle Linux 9

Last metadata expiration check: 1:26:21 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : gensio
Version : 2.8.3
Release : 1.el9
Architecture : x86_64
Size : 2.9 M
Source : gensio-2.8.3-1.el9.src.rpm
Repository : epel
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.