Skip to content

Instantly share code, notes, and snippets.

@johnarok
Last active January 6, 2019 06:57
Show Gist options
  • Save johnarok/b25e4ee8b72a21074fb0504ecb900504 to your computer and use it in GitHub Desktop.
Save johnarok/b25e4ee8b72a21074fb0504ecb900504 to your computer and use it in GitHub Desktop.
onetime install setups

LXQT with i3

sudo apt-get update
sudo apt-get install lxqt
sudo apt-get update
sudo apt-get install i3 nitrogen 
https://feeblenerd.blogspot.com/2016/08/walkthrough-for-lubuntu-with-i3-tiling.html

Ansible

echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" >> /etc/apt/sources.list
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
sudo apt-get update
sudo apt-get install ansible

SSH (First time only)

/etc/ssh/sshd_config and change the following line:
FROM:
PermitRootLogin without-password
TO:
PermitRootLogin yes

Git

git config --global user.name " "
git config --global user.email " "

Golang

wget https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz 
sudo tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz 
rm -rf go1.10.3.linux-amd64.tar.gz

Ubnt Controller

echo 'deb http://www.ubnt.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list
sudo wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ubnt.com/unifi/unifi-repo.gpg
sudo apt update
sudo apt install unifi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment