From cb5eb90489af9733d2fdb62a09bcc27d37e13c68 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Fri, 14 Dec 2018 11:30:37 -0500 Subject: [PATCH] ubuntu setup --- ubuntu/new_server.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ubuntu/new_server.md diff --git a/ubuntu/new_server.md b/ubuntu/new_server.md new file mode 100644 index 0000000..8c62db1 --- /dev/null +++ b/ubuntu/new_server.md @@ -0,0 +1,43 @@ +apt update +``` +sudo apt update +sudo apt upgrade +//sometimes network-manager service is not running after update and cannot resolve addresses +sudo service network-manager start +sudo ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf +``` +also had to reference [this article](https://askubuntu.com/questions/368435/how-do-i-fix-dns-resolving-which-doesnt-work-after-upgrading-to-ubuntu-13-10-s) + +version control /etc +``` +cd //etc +sudo git init +sudo git add . +sudo git commit -m "initial setup" +``` + +pspg pager +``` +sudp apt-get install pspg +``` + +postgres +``` +sudo vim /etc/apt/sources.list.d/pgdg.list +deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main +wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - +sudo apt-get update +sudo apt-get install postgresql-11 +``` + +vundle +``` +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +``` + +dotfiles (depends on vundle currently) +``` +git clone "https://fleetside@bitbucket.com/fleetside/dotfiles.git" +cp -R ~/dotfiles/. ~/ +sudo rm -r dotfiles/ +```