Skip to content

Instantly share code, notes, and snippets.

@thenewvu
Last active October 29, 2015 08:26
Show Gist options
  • Save thenewvu/4dd16d2d5eca181c699c to your computer and use it in GitHub Desktop.
Save thenewvu/4dd16d2d5eca181c699c to your computer and use it in GitHub Desktop.
minimal-ubuntu-setup
# turnoff vim swapfile
echo "set noswapfile" >> ~/.vimrc
# install graphic manager
sudo apt-get update
sudo apt-get install xserver-xorg
# setup i3 ppa and install i3
sudo sh -c 'echo "deb http://debian.sur5r.net/i3/ $(lsb_release -c -s) universe" >> /etc/apt/sources.list.d/i3.list'
sudo apt-get update
sudo apt-get --allow-unauthenticated install sur5r-keyring
sudo apt-get update
sudo apt-get install i3
# install x window manager starter
sudo apt-get install xinit
# start x window manager (automatically start i3)
# startx
# setup chrome ppa and install chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
# install network manager
sudo apt-get install wicd-curses
# install utils
sudo apt-get install htop
sudo apt-get install tree
sudo apt-get install software-properties-common
sudo apt-get install vim
sudo apt-get install git
# install jdk8
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
# enable sound
sudo apt-get install alsa-base gstreamer0.10-alsa
sudo usermod -a -G audio vu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment