Skip to content

Instantly share code, notes, and snippets.

@reergymerej
Last active November 29, 2015 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reergymerej/4310a3f4cce0da8bb659 to your computer and use it in GitHub Desktop.
Save reergymerej/4310a3f4cce0da8bb659 to your computer and use it in GitHub Desktop.
ubuntu 15.10 reboot

Starting Over with Ubuntu 15.10

Here's a TODO list to help you get back up and running.

  1. setup software center source, select best server

     sudo apt-get update
    
  2. download chrome, uname -a to see architecture

  3. uninstall Firefox

  4. install gnome shell, use lightdm why? sudo apt-get install gnome-shell

  5. setup ssh key

cd ~/.ssh/
ssh-keygen -t rsa -C 'jeremy.greer.atl@gmail.com'
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
  1. add key to github
sudo apt-get install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub
  1. install git
sudo apt-get install git
git config --global user.name "Your Mother"
git config --global user.email your@mother.com
  1. install nvm and lint modules
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
nvm install stable
npm install -g jshint
npm install -g eslint
  1. install atom.io

  2. install hack font cd ~/Downloads/ wget https://github.com/chrissimpkins/Hack/releases/download/v2.018/Hack-v2_018-ttf.zip sudo mkdir -p /usr/share/fonts/truetype/Hack unzip ./Hack-v2_018-ttf.zip rm ./Hack*.zip sudo mv ./Hack-* /usr/share/fonts/truetype/Hack/

    in sublime, settinuser, add "font_face": "Hack"

  3. install sublime text 3

    • install ST3 package manager
    • install packages
      • Pretty JSON

      • sublimelinter

        • setup to work with nvm

          1. sublintesetdef open settings
          2. paths.linux - add path to node when running nvm which node
        • sublinterlintmod - background

        • install linters

          1. sublinterjshint
          2. sublintconteslint
      • babel

      • markdown preview

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment