Skip to content

Instantly share code, notes, and snippets.

@Hosuke
Last active August 29, 2015 14:09
Show Gist options
  • Save Hosuke/e8f7d7d93f854380e960 to your computer and use it in GitHub Desktop.
Save Hosuke/e8f7d7d93f854380e960 to your computer and use it in GitHub Desktop.
Setting Up Ubuntu Workstation Guide

By Hosuke

  1. Burn an Ubuntu 14.04 disk

  2. Install it

  3. sudo apt-get update && sudo apt-get upgrade

  4. Disable Unity Dash Online Search feature : wget -q -O - https://fixubuntu.com/fixubuntu.sh | bash

  5. Install Ubuntu tweak: download package from http://ubuntu-tweak.com/
    sudo dpkg -i ubuntu-tweak_0.8.6-1_all.deb
    sudo apt-get install -f

  6. Install Ubuntu After Install sudo add-apt-repository ppa:thefanclub/ubuntu-after-install
    sudo apt-get update
    sudo apt-get install ubuntu-after-install

  7. Install neccessary softwares in Ubuntu After All

  8. Install WebStorm (and RubyMine, PyCharm, IntelliJ and whatever) Remember to create Desktop shortcuts

  9. Install Sublime Text 3: http://ict-tricks.blogspot.com.au/2014/09/how-to-craked-sublime-text-3-in-ubuntu.html Welcome.

  10. Install Package Control in Sublime: https://sublime.wbond.net/installation

  11. Install FlatLand and SublimeLinter in Sublime

  12. Install nodejs: sudo apt-get install curl
    curl -sL https://deb.nodesource.com/setup | sudo bash -
    sudo apt-get install nodejs
    sudo apt-get install npm

  13. Install jshint globally and in Sublime: sudo npm install -g jshint and in Sublime, install package: SublimeLinter-jshint

  14. Install bower, grunt and yeoman: sudo npm install -g bower grunt-cli yo generator-angular

Enjoy and happy coding!

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