Skip to content

Latest commit

 

History

History
50 lines (49 loc) · 1.34 KB

Install-Latitude-E6520-Linux-Mint.md

File metadata and controls

50 lines (49 loc) · 1.34 KB

DELL Latitude E6520 with Linux Mint

2015-01-30

  • Installed Linux Mint 17.1 Cinnamon
  • F12 -> enable UEFI boot
  • Graphic card problems on second monitor (multiple mouse symbols)
  • NVIDIA Corporation: GF119M [NVS 4200M] - use nvidia-331 driver Version 331.113-0ubuntu0.0.4
  • Installed dotfiles
sudo apt-get install git
mkdir code && cd code
git clone https://github.com/StefanScherer/dotfiles && cd dotfiles && ./sync.sh
sudo apt-get install vim
  • Downloaded and installed Vagrant 1.7.2
sudo apt-get install virtualbox-4.3
vagrant plugin install vagrant-cucumber
vagrant plugin install vagrant-multiprovider-snap
vagrant plugin install vagrant-pristine
sudo apt-get install curl
  • Install GVM
bash < <(curl -L -s https://raw.github.com/moovweb/gvm/master/binscripts/gvm-installer)
sudo apt-get install mercurial bison
gvm install go1.3
gvm use go1.3 --default
  • Install hub
git clone https://github.com/github/hub.git
cd hub
script/build
mv ./hub ~/bin
  • Download and installed Sublime Text 3
  • Download and installed Atom
  • Install Packer 0.7.5
sudo mkdir -p /opt/packer
pushd /opt/packer
sudo wget --no-verbose https://dl.bintray.com/mitchellh/packer/packer_0.7.5_linux_amd64.zip
sudo unzip packer_0.7.5_linux_amd64.zip
sudo rm packer_0.7.5_linux_amd64.zip
pushd /usr/bin
sudo ln -s /opt/packer/* .
popd
popd