How To Install no-more-secrets on Rocky Linux 8
Introduction
In this tutorial we learn how to install no-more-secrets
on Rocky Linux 8.
What is no-more-secrets
A tool set to recreate the famous “decrypting text” effect as seen in the 1992 movie Sneakers.
We can use yum
or dnf
to install no-more-secrets
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install no-more-secrets.
Install no-more-secrets 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 no-more-secrets
using dnf
by running the following command:
sudo dnf -y install no-more-secrets
Install no-more-secrets 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 no-more-secrets
using yum
by running the following command:
sudo yum -y install no-more-secrets
How To Uninstall no-more-secrets on Rocky Linux 8
To uninstall only the no-more-secrets
package we can use the following command:
sudo dnf remove no-more-secrets
no-more-secrets Package Contents on Rocky Linux 8
/usr/bin/nms
/usr/lib/.build-id
/usr/lib/.build-id/1b
/usr/lib/.build-id/1b/b6ef5a4789cdd9b885fbf463762f7545d5e16c
/usr/share/doc/no-more-secrets
/usr/share/doc/no-more-secrets/README.md
/usr/share/licenses/no-more-secrets
/usr/share/licenses/no-more-secrets/LICENSE
/usr/share/man/man6/nms.6.gz
References
Summary
In this tutorial we learn how to install no-more-secrets
on Rocky Linux 8 using yum and dnf.