Skip to content

Instantly share code, notes, and snippets.

@dlimars
Forked from williamoliveira/install.sh
Last active December 22, 2015 11:40
Show Gist options
  • Save dlimars/c1dfd02f428004d968be to your computer and use it in GitHub Desktop.
Save dlimars/c1dfd02f428004d968be to your computer and use it in GitHub Desktop.
#Ubuntu Tweak
cd ~;
sudo wget https://launchpad.net/ubuntu-tweak/0.8.x/0.8.7/+download/ubuntu-tweak_0.8.7-1~trusty2_all.deb;
sudo dpkg -i ubuntu-tweak_0.8.7-1~trusty2_all.deb;
sudo rm ubuntu-tweak_0.8.7-1~trusty2_all.deb;
#Paper Theme
sudo add-apt-repository -y ppa:snwh/pulp;
sudo apt-get update;
sudo apt-get install -y paper-icon-theme paper-gtk-theme;
#Numix Circle Icons
sudo add-apt-repository -y ppa:numix/ppa;
sudo apt-get update;
sudo apt-get install -y numix-icon-theme-circle;
#Google 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.list';
sudo apt-get update;
sudo apt-get install google-chrome-stable;
#Java
sudo add-apt-repository -y ppa:webupd8team/java;
sudo apt-get update;
sudo apt-get install -y oracle-java8-installer;
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections;
sudo apt-get install -y oracle-java8-set-default;
#Sublime 3
sudo add-apt-repository -y ppa:webupd8team/sublime-text-3;
sudo apt-get update;
sudo apt-get install -y sublime-text-installer;
#Node
sudo apt-key adv -y --keyserver keyserver.ubuntu.com --recv 68576280;
sudo apt-add-repository -y 'deb https://deb.nodesource.com/node_4.x wily main';
sudo apt-get update;
sudo apt-get install -y nodejs;
#Cordova + Ionic
sudo npm install -g -y cordova ionic;
#Gulp
sudo npm install -g -y gulp;
#PHP
sudo apt-get install -y php5-cli;
#Git
sudo apt-get install -y git;
#Composer
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer;
#Virtual Box Deps
sudo apt-get install -y dkms;
sudo sh -c 'echo "deb http://cz.archive.ubuntu.com/ubuntu vivid main " >> /etc/apt/sources.list';
sudo apt-get update ;
sudo apt-get install -y libvpx1;
#Virtual Box
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -;
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian vivid contrib" >> /etc/apt/sources.list';
sudo apt-get update;
sudo apt-get install -y virtualbox-5.0;
#Vagrant
sudo apt-get install vagrant;
#Homestead
vagrant box add laravel/homestead;
#Fish shell
sudo apt-get install -y fish;
sudo chsh -s `which fish`;
#usermod -s /usr/bin/fish username
#PhpStorm
sudo mkdir /opt/phpstorm;
cd /opt/phpstorm;
sudo rm -rf *.tar.gz ;
sudo wget https://download.jetbrains.com/webide/PhpStorm-10.0.2.tar.gz;
sudo tar -zxvf PhpStorm-10.0.2.tar.gz;
sudo chmod -Rv 777 /opt/phpstorm;
cd ./*/bin;
sudo chmod +x phpstorm.sh;
./phpstorm.sh;
#WebStorm
sudo mkdir /opt/webstorm;
cd /opt/webstorm;
sudo rm -rf *.tar.gz ;
sudo wget https://download.jetbrains.com/webstorm/WebStorm-11.0.2.tar.gz;
sudo tar -zxvf WebStorm-11.0.2.tar.gz;
sudo chmod -Rv 777 /opt/webstorm;
cd ./*/bin;
sudo chmod +x webstorm.sh;
./webstorm.sh;
#Apache
sudo apt-get install apache2
#MySql
sudo apt-get install mysql-server
#Php
sudo apt-get install php5 php5-mcrypt
#Integrar PHP com MySql
sudo apt-get install php5-mysql
#Integrar Php com Apache2
sudo apt-get install libapache2-mod-php5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment