[email protected]Support 24/7 · Billing 09:00 – 00:00LinkedInXFacebook
NexonHost
Netherlands Dedicated ServersAmsterdam · Equinix AM6Germany Dedicated ServersFrankfurt · Equinix FR4Romania Dedicated ServersBucharest · VoxilityAustria Dedicated ServersVienna · Interxion VIEBulgaria Dedicated ServersSofia · TelepointFrance Dedicated ServersParis · Interxion PAR — Marseille · Digital Realty MRS3Ireland Dedicated ServersDublin · Equinix DB2Italy Dedicated ServersMilan · Irideos AvalonPoland Dedicated ServersWarsawSpain Dedicated ServersMadrid · Equinix MD2United States Dedicated ServersAshburn · Equinix DC
All articles
Getting startedSeptember 11, 2023

How to Install Go on CentOS 7.

How To Install Go On CentOS 7.

In this tutorial, we will show you how to download and install Go on a CentOS 7 system.

Go, often referred to as golang is a modern open-source programming language created by Google. Many popular applications, including Kubernetes, Docker, Hugo, and Caddy are written in Go.

 

How to Install Go

At the time of writing this article, the latest stable version of Go is version 1.13. Before downloading the tarball, visit the official Go downloads page and check if there is a new version available.

Follow the steps below to install Go on CentOS 7:

  1. Download the tarball.

    To download the Go binary use either wget or curl :

    wget https://dl.google.com/go/go1.13.linux-amd64.tar.gz
  2. Verify the tarball.

    Once the download is completed verify the tarball checksum with the sha256sum command:

    sha256sum go1.13.linux-amd64.tar.gz
  3. Extract the tarball.

    Use the tar command to extract the tarball to the /usr/local directory:

    sudo tar -C /usr/local -xzf go1.13.linux-amd64.tar.gz
  4. Adjust the Path Variable.

    Now we need to tell our system where to find the Go executable binaries by adjusting the $PATH environment variable.

    We can do this by appending the following line to the /etc/profile file (for a system-wide installation) or to the $HOME/.bash_profile file (for a current user installation):

    export PATH=$PATH:/usr/local/go/bin

    Save the file, and load the new PATH environment variable into the current shell session with the following command:

    source ~/.bash_profile

 

Test the Installation

To test whether Go is installed correctly, we will set up a workspace and build a simple “Hello world” program.

  1. Create the workspace directory

    By default the workspace directory is set to $HOME/go, to create it type:

    mkdir ~/go
  2. Create a simple “Hello World” Go file.

    Inside the workspace create a new directory src/hello

    mkdir -p ~/go/src/hello

    and in that directory create a file named hello.go

    package main
    
    import "fmt"
    
    func main() {
        fmt.Printf("Hello, World\n")
    }

    You can learn more about Go workspace directory hierarchy here

  3. Build the hello.go file:

    To build the file, switch to the ~/go/src/hello directory and run go build:

    cd ~/go/src/hellogo build

    The command above will build an executable named hello.

  4. Run the executable:

    Run the executable by typing:

    ./hello
    Hello, World

    If you see the output above, then you have successfully installed Go.

 

Conclusion

Now that you have downloaded and installed Go on your CentOS system, you can start developing your Go projects.

Keep reading
How to use Whoami Command
March 12, 2023

How to use Whoami Command

How To Use Whoami Command In this article, we will cover the whoami command. As its name suggests, the whoami command prints the user name of the effective user ID. In other words, it displays the name of the currently logged-in user. How to Use the whoami Command The syntax for the whoami command…

Read article
How to Mount Windows Share on Linux using CIFS
March 10, 2023

How to Mount Windows Share on Linux using CIFS

How To Mount Windows Share On Linux Using CIFS In this tutorial, we will explain how to manually and automatically mount Windows shares on Linux systems. The Common Internet File System (CIFS) is a network file-sharing protocol. CIFS is a form of SMB. On Linux and UNIX operating systems, a Windows…

Read article
How to use W command
March 10, 2023

How to use W command

How To Use W Command In this article, we will talk about the w command. w is a command-line utility that displays information about currently logged in users and what each user is doing. It also gives information about how long the system has been running, the current time, and the system load…

Read article
Get in Touch

Together, Let’s Build a Faster, Safer Internet.

Build scalable infrastructure with NexonHost — high-performance dedicated servers, VPS hosting, cloud hosting, and DDoS protection across Europe.

Get Started →Contact Us
[email protected]Support 24/7 · Billing 09:00 – 00:00