How to Install and Uninstall lua-luv.x86_64 Package on CentOS Stream 8

Last updated: May 17,2024

1. Install "lua-luv.x86_64" package

This is a short guide on how to install lua-luv.x86_64 on CentOS Stream 8

$ sudo dnf update $ sudo dnf install lua-luv.x86_64

2. Uninstall "lua-luv.x86_64" package

Learn how to uninstall lua-luv.x86_64 on CentOS Stream 8:

$ sudo dnf remove lua-luv.x86_64 $ sudo dnf autoremove

3. Information about the lua-luv.x86_64 package on CentOS Stream 8

Last metadata expiration check: 2:28:36 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : lua-luv
Version : 1.42.0.1
Release : 3.el8
Architecture : x86_64
Size : 66 k
Source : lua-luv-1.42.0.1-3.el8.src.rpm
Repository : epel
Summary : Bare libuv bindings for lua
URL : https://github.com/luvit/luv
License : ASL 2.0
Description : This library makes libuv available to lua scripts. It was made
: for the luvit project but should usable from nearly any lua
: project.
:
: The library can be used by multiple threads at once. Each thread
: is assumed to load the library from a different lua_State. Luv
: will create a unique uv_loop_t for each state. You can't share uv
: handles between states/loops.
:
: The best docs currently are the libuv docs themselves. Hopefully
: soon we'll have a copy locally tailored for lua.