Explain linux file permission like I'm Five

Updated: 2th June 2023
Tags: ubuntu linux

Ubuntu run command in background

Updated: 14th November 2020
Tags: terminal comman linux ubuntu

To run some command in background, so you can close terminal, type the following:

nohup command-with-options &

Build golang app from windows to Linux 64 bit

Updated: 14th November 2020
Tags: go windows linux build

TL DR; To build app on windows to linux 64 type this in powershell

$Env:GOOS = "linux"; $Env:GOARCH = "amd64"; go build main.go