How to Install Goeland on Fedora Server Latest
Goeland is a utility tool written in Go for managing containers and images from several popular container engines, like Docker and Open Container Initiative. In this tutorial, we will learn how to install Goeland on Fedora Server, the latest version as of now.
Prerequisites
- Fedora Server, the latest version installed on your machine.
- Basic knowledge of terminal commands.
Installation
Follow the steps below to install Goeland on your Fedora Server.
Update the package list.
$ sudo dnf updateInstall the required dependencies for Go.
$ sudo dnf install -y golangClone the Goeland repository to your local system.
$ git clone https://github.com/slurdge/goeland.gitChange the directory to the cloned repository.
$ cd goelandBuild the Goeland executable binary.
$ go buildThis creates a binary named
goelandin your current directory.Move the binary file to the
/usr/local/bin/directory.$ sudo mv goeland /usr/local/bin/Confirm that Goeland is installed correctly by running the following command.
$ goeland --versionThe output will show you the latest version of the Goeland utility tool installed on your system.
Conclusion
You now have Goeland installed on your Fedora Server instance. Enjoy managing your container engines with ease!