Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install go in kali linux

# Download the latest version for Linux from "https://golang.org/dl/"
# Open your terminal and navigate to your downloads folder 
cd /root/Downloads
# Extract the files "x.xx.x represents the version"
tar -C /usr/local/ -xzf gox.xx.x.linux-amd64.tar.gz
# Add variables for GO by modifying “~/.bashrc”
vim ~/.bashrc
# Add the following paths to the end of the file
export GOPATH=/root/go-workspace
export GOROOT=/usr/local/go
PATH=$PATH:$GOROOT/bin/:$GOPATH/bin
# Then refresh the bashrc to get the updated variables
source ~/.bashrc
Comment

PREVIOUS NEXT
Code Example
Shell :: tar exclude directory 
Shell :: how to uninstall all plugins in ionic app 
Shell :: git clone with submodules 
Shell :: ubuntu install pip 
Shell :: how to clone a specific git tag 
Shell :: powershell command history file 
Shell :: how to access adb globally on mac 
Shell :: get mac address linux 
Shell :: how to make a beep in cmd 
Shell :: git tag last 
Shell :: mac get your screen size terminal 
Shell :: wslinux backup 
Shell :: chmod: changing permissions of : Read-only file system and writeable 
Shell :: install vlc fedora 
Shell :: bash: /bin/rm: Argument list too long 
Shell :: twig install 
Shell :: docker run restart always 
Shell :: linux version 
Shell :: install aws cli mac 
Shell :: check git connfig 
Shell :: git command line see logö 
Shell :: sed add word to beginning of line 
Shell :: bash: tree: command not found... centos7 
Shell :: cache your login credentials in git command 
Shell :: gsap install 
Shell :: how to add application to unity launcher 
Shell :: remove unused images docker manually 
Shell :: awk how to print without adding spaces between fields 
Shell :: How to install tensorflow-gpu in ubuntu and Linux 
Shell :: gitignore global example 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =