How to Install and Uninstall http-parser.i686 Package on Rocky Linux 9

Last updated: September 21,2024

1. Install "http-parser.i686" package

In this section, we are going to explain the necessary steps to install http-parser.i686 on Rocky Linux 9

$ sudo dnf update $ sudo dnf install http-parser.i686

2. Uninstall "http-parser.i686" package

Please follow the step by step instructions below to uninstall http-parser.i686 on Rocky Linux 9:

$ sudo dnf remove http-parser.i686 $ sudo dnf autoremove

3. Information about the http-parser.i686 package on Rocky Linux 9

Last metadata expiration check: 0:17:34 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : http-parser
Version : 2.9.4
Release : 6.el9
Architecture : i686
Size : 38 k
Source : http-parser-2.9.4-6.el9.src.rpm
Repository : appstream
Summary : HTTP request/response parser for C
URL : https://github.com/nodejs/http-parser
License : MIT
Description : This is a parser for HTTP messages written in C. It parses both requests and
: responses. The parser is designed to be used in performance HTTP applications.
: It does not make any syscalls nor allocations, it does not buffer data, it can
: be interrupted at anytime. Depending on your architecture, it only requires
: about 40 bytes of data per message stream (in a web server that is per
: connection).