How to Install and Uninstall naga.noarch Package on Fedora 38

Last updated: September 22,2024

1. Install "naga.noarch" package

This guide covers the steps necessary to install naga.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install naga.noarch

2. Uninstall "naga.noarch" package

This is a short guide on how to uninstall naga.noarch on Fedora 38:

$ sudo dnf remove naga.noarch $ sudo dnf autoremove

3. Information about the naga.noarch package on Fedora 38

Last metadata expiration check: 0:20:57 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : naga
Version : 3.0
Release : 22.20200930git6f1e95d.fc38
Architecture : noarch
Size : 54 k
Source : naga-3.0-22.20200930git6f1e95d.fc38.src.rpm
Repository : fedora
Summary : Simplified Java NIO asynchronous sockets
URL : https://github.com/lerno/naga
License : MIT
Description : Naga aims to be a very small NIO library that provides a handful of
: java classes to wrap the usual Socket and ServerSocket with
: asynchronous NIO counterparts (similar to NIO2 planned for Java 1.7).
:
: All of this is driven from a single thread, making it useful for both
: client (e.g. allowing I/O to be done in the AWT-thread without any
: need for threads) and server programming (1 thread for all connections
: instead of 2 threads/connection).
:
: Internally Naga is a straightforward NIO implementation without any
: threads or event-queues thrown in, it is "just the NIO-stuff", to let
: you build things on top of it.
:
: Naga contains the code needed to get NIO up and running without having
: to code partially read buffers and setting various selection key
: flags.