sudo apt-get install git
sudo apt-get install build-essential libssl-dev
sudo apt-get install curl
sudo apt-get install jq
sudo apt-get install xclip
ssh-keygen -t rsa
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
xclip -sel clip < ~/.ssh/id_rsa.pub
to copy id_rsa.pub to clipboard
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
source .bashrc
nvm install node
sudo apt-get install -y postgresql postgresql-contrib
sudo apt-get install -y postgis postgresql-9.5-postgis-2.2
sudo nano /etc/postgresql/9.5/main/pg_hba.conf
- change
local all postgres peer
- to
local all postgres trust
(desktop - it's gonna be ok)
sudo service postgresql restart
psql -U postgres
\password postgres
\q
sudo passwd postgres
Add to /etc/apt/sources.list:
deb http://qgis.org/debian xenial main
deb-src http://qgis.org/debian xenial main
sudo apt-get update
sudo apt-get install qgis python-qgis qgis-plugin-grass
curl -o- https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh | bash
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] http://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get update
sudo apt-get install code
First, add the GPG key for the official Docker repository to the system:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Add the Docker repository to APT sources:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
Next, update the package database with the Docker packages from the newly added repo:
sudo apt-get update
Make sure you are about to install from the Docker repo instead of the default Ubuntu 16.04 repo:
apt-cache policy docker-ce
Finally, install Docker:
sudo apt-get install -y docker-ce