How To Install golie on Fedora 34
Introduction
In this tutorial we learn how to install golie on Fedora 34.
What is golie
A client/server implementation of ROLIE written in GO.
We can use yum or dnf to install golie on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install golie.
Install golie 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 golie using dnf by running the following command:
sudo dnf -y install golie
Install golie 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 golie using yum by running the following command:
sudo yum -y install golie
How To Uninstall golie on Fedora 34
To uninstall only the golie package we can use the following command:
sudo dnf remove golie
golie Package Contents on Fedora 34
/usr/bin/golie
/usr/bin/golied
/usr/lib/.build-id
/usr/lib/.build-id/1f
/usr/lib/.build-id/1f/e59e969aa30b08bfefad0dcd98d3e1d20c4675
/usr/lib/.build-id/5f
/usr/lib/.build-id/5f/e9ab8fe12d5c7d837778652189ed90c17001f0
/usr/share/doc/golie
/usr/share/doc/golie/README.md
/usr/share/doc/golie/examples
/usr/share/doc/golie/examples/certs
/usr/share/doc/golie/examples/certs/README.md
/usr/share/doc/golie/examples/certs/cert.pem
/usr/share/doc/golie/examples/certs/key.pem
/usr/share/doc/golie/examples/rolie
/usr/share/doc/golie/examples/rolie/entry
/usr/share/doc/golie/examples/rolie/entry/CVE-2010-3917-69956a2702ad.json
/usr/share/doc/golie/examples/rolie/entry/CVE-2010-3917-69956a2702ad.xml
/usr/share/doc/golie/examples/rolie/entry/f63aafa9-4082-48a3-9ce6-97a2d69d4a9b.json
/usr/share/doc/golie/examples/rolie/entry/f63aafa9-4082-48a3-9ce6-97a2d69d4a9b.xml
/usr/share/doc/golie/examples/rolie/feed
/usr/share/doc/golie/examples/rolie/feed/2a7e265a-39bc-43f2-b711-b8fd9264b5c9.json
/usr/share/doc/golie/examples/rolie/feed/2a7e265a-39bc-43f2-b711-b8fd9264b5c9.xml
/usr/share/doc/golie/examples/rolie/feed/gov.nist.nvd.cve.recent.json
/usr/share/doc/golie/examples/rolie/feed/gov.nist.nvd.cve.recent.xml
/usr/share/doc/golie/examples/rolie/service
/usr/share/doc/golie/examples/rolie/service/nvd.json
/usr/share/doc/golie/examples/rolie/service/nvd.xml
/usr/share/doc/golie/examples/rolie/service/pcs.json
/usr/share/doc/golie/examples/rolie/service/pcs.xml
/usr/share/licenses/golie
/usr/share/licenses/golie/LICENSE
/usr/share/licenses/golie/LICENSE.NIST
References
Summary
In this tutorial we learn how to install golie on Fedora 34 using yum and dnf.