How to Install and Uninstall libluv.i686 Package on Fedora 38

Last updated: November 28,2024

1. Install "libluv.i686" package

Here is a brief guide to show you how to install libluv.i686 on Fedora 38

$ sudo dnf update $ sudo dnf install libluv.i686

2. Uninstall "libluv.i686" package

Please follow the instructions below to uninstall libluv.i686 on Fedora 38:

$ sudo dnf remove libluv.i686 $ sudo dnf autoremove

3. Information about the libluv.i686 package on Fedora 38

Last metadata expiration check: 1:49:42 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : libluv
Version : 1.44.2.1
Release : 3.fc38
Architecture : i686
Size : 77 k
Source : lua-luv-1.44.2.1-3.fc38.src.rpm
Repository : updates
Summary : Lua bindings for libluv as a library
URL : https://github.com/luvit/luv
License : Apache-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.