You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
780 B

#!/usr/bin/env bash
set -euo pipefail
IFS='
'
echo Installing common tools
sudo apt -y install man bash-completion git jq curl build-essential netcat wget psmisc file net-tools brotli unzip zip moreutils pv tree whois
echo Installing Go
wget https://golang.org/dl/go1.15.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.15.2.linux-amd64.tar.gz
rm go1.15.2.linux-amd64.tar.gz
cat <<'EOF'>> ~/.bashrc
GOPATH=$HOME/go
PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
EOF
echo Installing Go tools
GOPATH=$HOME/go
PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
4 years ago
go get golang.org/x/tools/cmd/goimports github.com/01-edu/z01
echo Installing OpenSSH
sudo apt -y install openssh-client
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N ''
4 years ago
echo "Copy the following line :"
cat ~/.ssh/id_ed25519.pub