How To Install libopm on Fedora 34
Introduction
In this tutorial we learn how to install libopm
on Fedora 34.
What is libopm
An open proxy detection library, developed by the blitzed IRC network team. Its original use was to detect open proxies running on clients connecting to various IRC servers, but it has evolved to become a generic open proxy detection library. libopm 0.1 28.20050731cvs.fc34 x86_64 30 k libopm-0.1-28.20050731cvs.fc34.src.rpm fedora Blitzed open proxy monitor library http GPLv2+ An open proxy detection library, developed by the blitzed IRC network team. Its original use was to detect open proxies running on clients connecting to various IRC servers, but it has evolved to become a generic open proxy detection library.
We can use yum
or dnf
to install libopm
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libopm.
Install libopm 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 libopm
using dnf
by running the following command:
sudo dnf -y install libopm
Install libopm 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 libopm
using yum
by running the following command:
sudo yum -y install libopm
How To Uninstall libopm on Fedora 34
To uninstall only the libopm
package we can use the following command:
sudo dnf remove libopm
libopm Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/e7a23b1b1d249ae84a128a078458ba2645989f
/usr/lib64/libopm.so.0
/usr/lib64/libopm.so.0.0.0
/usr/share/doc/libopm
/usr/share/doc/libopm/ChangeLog
/usr/share/licenses/libopm
/usr/share/licenses/libopm/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/6d
/usr/lib/.build-id/6d/518bee19b33a3b13996cf3fbc654b75614a58b
/usr/lib/libopm.so.0
/usr/lib/libopm.so.0.0.0
/usr/share/doc/libopm
/usr/share/doc/libopm/ChangeLog
/usr/share/licenses/libopm
/usr/share/licenses/libopm/LICENSE
References
- [libopm website](http://wiki.blitzed.org/BOPM http://wiki.blitzed.org/BOPM)
Summary
In this tutorial we learn how to install libopm
on Fedora 34 using yum and dnf.