Skip to content

Instantly share code, notes, and snippets.

View VincentBrunet's full-sized avatar
👻

Vincent Brunet VincentBrunet

👻
View GitHub Profile
0x00941C65c264D3455d018230D07cEc863935F243
yes | apt-get install apt-transport-https
yes | apt-get install ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo debian-jessie main" >> /etc/apt/sources.list.d/docker.list
apt-get update
yes | apt-get install docker-engine
@VincentBrunet
VincentBrunet / prep.sh
Last active November 26, 2016 00:12
New General Purpose Server
su
yes | apt-get install build-essential
yes | apt-get install sudo
yes | apt-get install git
yes | apt-get install tree
yes | apt-get install htop
yes | apt-get install emacs-nox
yes | apt-get install less
yes | apt-get install python3.5
@VincentBrunet
VincentBrunet / prep.sh
Last active November 26, 2016 00:16
First Connection
echo "export LC_ALL='en_US.UTF-8'" >> ~/.bashrc
echo "export LANGUAGE='en_US.UTF-8'" >> ~/.bashrc
echo "alias cp='cp -iv'" >> ~/.bashrc
echo "alias mv='mv -iv'" >> ~/.bashrc
echo "alias mkdir='mkdir -pv'" >> ~/.bashrc
echo "alias less='less -FSRXc'" >> ~/.bashrc
echo "alias ls='ls -h --color=auto'" >> ~/.bashrc
echo "alias ll='ls -la'" >> ~/.bashrc