Skip to content

Instantly share code, notes, and snippets.

@iliion
iliion / install-go.sh
Created May 31, 2021 19:07
{Debian 8|9|10} Install GO
#!/bin/sh
# Download Latest Go Binary
wget https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz
# Install Go Language
sudo tar -C /usr/local -xzf go1.13.4.linux-amd64.tar.gz
# Add /usr/local/go/bin to the PATH
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile
@iliion
iliion / install-node.sh
Last active May 30, 2021 22:24
Install Node {Debian 8/9/10}
#!/bin/sh
# LTS Release
sudo apt-get install curl software-properties-common
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
# Install Node.js
sudo apt-get install -y nodejs npm
@iliion
iliion / parrot_docker_setup.sh
Last active December 16, 2024 18:20
Install docker and docker-compose {PARROT OS} - {Debian}
#!/bin/sh
set -e
# Install dependencies.
sudo apt install -y curl apt-transport-https \
software-properties-common ca-certificates
# Install docker.
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -