How To Install gssntlmssp on Rocky Linux 8

In this tutorial we learn how to install gssntlmssp on Rocky Linux 8. gssntlmssp is GSSAPI NTLMSSP Mechanism

Introduction

In this tutorial we learn how to install gssntlmssp on Rocky Linux 8.

What is gssntlmssp

A GSSAPI Mechanism that implements NTLMSSP

We can use yum or dnf to install gssntlmssp on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install gssntlmssp.

Install gssntlmssp on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install gssntlmssp using dnf by running the following command:

sudo dnf -y install gssntlmssp

Install gssntlmssp on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install gssntlmssp using yum by running the following command:

sudo yum -y install gssntlmssp

How To Uninstall gssntlmssp on Rocky Linux 8

To uninstall only the gssntlmssp package we can use the following command:

sudo dnf remove gssntlmssp

gssntlmssp Package Contents on Rocky Linux 8

/etc/gss/mech.d/ntlmssp.conf
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/f84e70ec3230996c79657444e5b816a8a4ac2e
/usr/lib64/gssntlmssp
/usr/lib64/gssntlmssp/gssntlmssp.so
/usr/share/doc/gssntlmssp
/usr/share/doc/gssntlmssp/COPYING
/usr/share/locale/en_GB/LC_MESSAGES/gssntlmssp.mo
/usr/share/man/man8/gssntlmssp.8.gz

References

Summary

In this tutorial we learn how to install gssntlmssp on Rocky Linux 8 using yum and dnf.