mirror of https://github.com/01-edu/public.git
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.
28 lines
762 B
28 lines
762 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 lz4 file net-tools brotli unzip zip moreutils pv tree whois |
|
|
|
echo Installing Go |
|
wget https://golang.org/dl/go1.14.6.linux-amd64.tar.gz |
|
sudo tar -C /usr/local -xzf go1.14.6.linux-amd64.tar.gz |
|
rm go1.14.6.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 |
|
go get golang.org/x/tools/cmd/goimports |
|
|
|
echo Installing OpenSSH |
|
sudo apt -y install openssh-client |
|
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N '' |
|
echo "Copy the following line :" |
|
cat ~/.ssh/id_ed25519.pub
|
|
|