Wednesday 12 April 2017

Simple way to install go for CENTOS


  1. Download Go From Go Site 
  2. Untar Go to /usr/local/
    tar -C /usr/local -xzf go-xx.tar
  3. Create Link in /usr/bin
    ln -s /usr/bin/go/ /usr/local/go/bin
  4. Create Go Working Directory
  5. mkdir /go
    
  6. Set GOPATH 
    export GOPATH=/go

Import SSH Private Key to Yubikey (PIV) for SSH Authentication

Introduction: This guide will walk you through the process of importing your SSH private key to a Yubikey (PIV) for SSH authentication on y...