Skip to content

Instantly share code, notes, and snippets.

@vs0uz4
Forked from marcosrjjunior/things-install-linux.md
Last active February 4, 2017 02:09
Show Gist options
  • Save vs0uz4/e917469b7bc7d95fc5bd to your computer and use it in GitHub Desktop.
Save vs0uz4/e917469b7bc7d95fc5bd to your computer and use it in GitHub Desktop.
My environment development after install Linux.

My environment development after install Linux. Everytime I format my linux, I need search all tools again Urgh.
So, I decided create a List of Best Things after install Linux, I hope help you too.
I currently use elementary OS 0.3 Freya

Index


1. Update

sudo apt-get update; sudo apt-get upgrade;

2. Chrome Stable Version

$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

$ sudo dpkg -i google-chrome-stable_current_amd64.deb

3. Elementary Tweaks

sudo add-apt-repository ppa:mpstark/elementary-tweaks-daily  

sudo apt-get update  

sudo apt-get install elementary-tweaks

Elementary-Tweaks-Appearance Elementary-Tweaks-Files


4. Sublime

http://www.sublimetext.com/3 (Ubunto 64 bit)

Package Control

  • amCoder Theme
  • Material Theme
  • Laravel Blade Highlighter
  • GitGutter
  • SideBarEnhancements
{
    "always_show_minimap_viewport": true,
    "auto_indent": true,
    "bold_folder_labels": true,
    "color_scheme": "Packages/Theme - amCoder/Monokai Low-Profile Gray.tmTheme",
    "font_face": "Ubuntu Mono",
    "font_options": "subpixel_antialias",
    "font_size": 12,
    "highlight_line": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "indent_guide_options":
    [
        "draw_normal",
        "draw_active"
    ],
    "line_padding_bottom": 7,
    "line_padding_top": 7,
    "material_theme_accent_yellow": true,
    "material_theme_bold_tab": true,
    "material_theme_disable_fileicons": false,
    "material_theme_disable_folder_animation": true,
    "material_theme_disable_tree_indicator": false,
    "material_theme_small_statusbar": true,
    "material_theme_small_tab": true,
    "overlay_scroll_bars": "enabled",
    "shift_tab_unindent": true,
    "theme": "Material-Theme-Darker.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "word_wrap": true
}

Sublime-Sample


5. Guake Terminal

sudo apt-get install guake

6. Vim

sudo apt-get install vim

7. Git and Extras

sudo add-apt-repository ppa:git-core/ppa  

sudo apt-get update  

sudo apt-get install git  

sudo apt-get install git-extras

8. VLC Media Player

sudo apt-get install vlc

9. Spotify

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D2C19886

echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list

sudo apt-get update

sudo apt-get install spotify-client

10. Slack

https://github.com/raelgc/scudcloud


11. Paper Theme

http://snwh.org/paper/

12. Node Js

curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash -  

sudo apt-get install --yes nodejs  

13. Environment

Virtual Box : https://www.virtualbox.org/wiki/Linux_Downloads (Ubunto-AMD64)

Vagrant : https://www.vagrantup.com/downloads.html

sudo apt-get install php5-cli php5-curl nfs-kernel-server

curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin

sudo mv /usr/local/bin/composer.phar /usr/local/bin/composer

composer global require "laravel/envoy=dev-master"

sudo ln -s $HOME /homedir

sudo ln -s $HOME/.composer/vendor/laravel/envoy/envoy /usr/local/bin/envoy

sudo vi /etc/hosts # 192.168.10.10     homestead.app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment