How To Install libx86emu on Fedora 34
Introduction
In this tutorial we learn how to install libx86emu
on Fedora 34.
What is libx86emu
Small x86 emulation library with focus of easy usage and extended execution logging functions. The library features an API to create emulation objects for x86 architecture. libx86emu 3.1 3.fc34 x86_64 69 k libx86emu-3.1-3.fc34.src.rpm fedora x86 emulation library https BSD Small x86 emulation library with focus of easy usage and extended execution logging functions. The library features an API to create emulation objects for x86 architecture.
We can use yum
or dnf
to install libx86emu
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libx86emu.
Install libx86emu on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libx86emu
using dnf
by running the following command:
sudo dnf -y install libx86emu
Install libx86emu on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libx86emu
using yum
by running the following command:
sudo yum -y install libx86emu
How To Uninstall libx86emu on Fedora 34
To uninstall only the libx86emu
package we can use the following command:
sudo dnf remove libx86emu
libx86emu Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/64e983a6a5aa9559c602659596058e54b8f619
/usr/lib64/libx86emu.so.3
/usr/lib64/libx86emu.so.3.1
/usr/share/doc/libx86emu
/usr/share/doc/libx86emu/README.md
/usr/share/licenses/libx86emu
/usr/share/licenses/libx86emu/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/53c340380f727f8bebd01e869f021835bf5bf1
/usr/lib/libx86emu.so.3
/usr/lib/libx86emu.so.3.1
/usr/share/doc/libx86emu
/usr/share/doc/libx86emu/README.md
/usr/share/licenses/libx86emu
/usr/share/licenses/libx86emu/LICENSE
References
- [libx86emu website](https://github.com/wfeldt/libx86emu https://github.com/wfeldt/libx86emu)
Summary
In this tutorial we learn how to install libx86emu
on Fedora 34 using yum and dnf.