Last active
March 11, 2018 15:37
-
-
Save JuanBarros2/10aead52713d4f9c6d105a7ea58eb5fd to your computer and use it in GitHub Desktop.
Script para instalar o ambiente de programação no linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo su | |
sudo apt-get install gedit | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O chrome.deb | |
sudo dpkg -i chrome.deb | |
sudo apt-get install -f | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
sudo add-apt-repository ppa:videolan/stable-daily | |
sudo apt-get update | |
sudo apt-get install vlc | |
sudo rm -Rf /opt/vscode/* | |
sudo rm -Rf /usr/share/applications/vscode.desktop | |
wget "https://go.microsoft.com/fwlink/?LinkID=620884" -O vscode.tar.gz | |
sudo tar -vzxf vscode.tar.gz -C /opt/ | |
sudo mv /opt/VSCode*/ /opt/vscode/ | |
sudo ln -sf /opt/vscode/code /usr/bin/code | |
echo -e '[Desktop Entry]\n Version=1.0\n Name=vscode\n Exec=/opt/vscode/code\n Icon=/opt/vscode/resources/app/resources/linux/code.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/vscode.desktop | |
sudo apt-get install git | |
sudo rm -Rf /opt/eclipse/ | |
sudo rm -Rf /usr/share/applications/eclipse.desktop | |
sudo wget -c http://eclipse.c3sl.ufpr.br/technology/epp/downloads/release/oxygen/2/eclipse-jee-oxygen-2-linux-gtk-x86_64.tar.gz -O eclipse.tar.gz | |
sudo tar -zxvf eclipse.tar.gz -C /opt/ | |
sudo mv /opt/eclipse*/ /opt/eclipse | |
sudo wget https://dl2.macupdate.com/images/icons128/11662.png -O /opt/eclipse/eclipse.png | |
sudo echo -e '[Desktop Entry]\n Version=1.0\n Name=eclipse\n Exec=/opt/eclipse/eclipse\n Icon=/opt/eclipse/eclipse.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/eclipse.desktop | |
sudo add-apt-repository ppa:ubuntuhandbook1/apps | |
sudo apt-get update | |
sudo apt-get install intellij-idea-ultimate | |
wget https://deb.nodesource.com/setup_9.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo apt-get install npm | |
sudo npm install -g @angular/cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment