How To Install libwsman1 on CentOS 8
Introduction
In this tutorial we learn how to install libwsman1
on CentOS 8.
What is libwsman1
Openwsman library for packages dependent on openwsman. libwsman1 2.6.5 7.el8 x86_64 142 k openwsman-2.6.5-7.el8.src.rpm appstream Open source Implementation of WS-Management http BSD Openwsman library for packages dependent on openwsman.
We can use yum
or dnf
to install libwsman1
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install libwsman1.
Install libwsman1 on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install libwsman1
using dnf
by running the following command:
sudo dnf -y install libwsman1
Install libwsman1 on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install libwsman1
using yum
by running the following command:
sudo yum -y install libwsman1
How To Uninstall libwsman1 on CentOS 8
To uninstall only the libwsman1
package we can use the following command:
sudo dnf remove libwsman1
libwsman1 Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/b0cb1d267e4242756c0b5d8182033d0a0eabfd
/usr/lib/.build-id/80
/usr/lib/.build-id/80/07d9673e936af5e37176bba8176c26f1aab23d
/usr/lib/.build-id/b1
/usr/lib/.build-id/b1/cc92507df62e5e6ed765c547ccc986ae4cf190
/usr/lib64/libwsman.so.1
/usr/lib64/libwsman.so.1.0.0
/usr/lib64/libwsman_client.so.4
/usr/lib64/libwsman_client.so.4.0.0
/usr/lib64/libwsman_curl_client_transport.so.1
/usr/lib64/libwsman_curl_client_transport.so.1.0.0
/usr/share/doc/libwsman1
/usr/share/doc/libwsman1/AUTHORS
/usr/share/doc/libwsman1/COPYING
/usr/share/doc/libwsman1/ChangeLog
/usr/share/doc/libwsman1/README.md
/usr/share/doc/libwsman1/TODO
/usr/lib/.build-id
/usr/lib/.build-id/61
/usr/lib/.build-id/61/61bc9758be046352c114f59b52abcaed74259e
/usr/lib/.build-id/65
/usr/lib/.build-id/65/7b0141a5a5a8908c2a9733f19f88d0a64cd320
/usr/lib/.build-id/c0
/usr/lib/.build-id/c0/8eb73beff3625e8ae644e43b7f267161e215d2
/usr/lib/libwsman.so.1
/usr/lib/libwsman.so.1.0.0
/usr/lib/libwsman_client.so.4
/usr/lib/libwsman_client.so.4.0.0
/usr/lib/libwsman_curl_client_transport.so.1
/usr/lib/libwsman_curl_client_transport.so.1.0.0
/usr/share/doc/libwsman1
/usr/share/doc/libwsman1/AUTHORS
/usr/share/doc/libwsman1/COPYING
/usr/share/doc/libwsman1/ChangeLog
/usr/share/doc/libwsman1/README.md
/usr/share/doc/libwsman1/TODO
References
- [libwsman1 website](http://www.openwsman.org/ http://www.openwsman.org/)
Summary
In this tutorial we learn how to install libwsman1
on CentOS 8 using yum and dnf.