Created
October 8, 2020 15:09
-
-
Save georgezim85/5afa7fd19b16538c3b3ae8e9b6bacc35 to your computer and use it in GitHub Desktop.
Bash script de instalação do Apache NetBeans 12.1
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
#!/bin/bash | |
set -e | |
# Instalar OpenJDK: | |
sudo apt-get update | |
sudo apt-get install openjdk-13-jdk | |
# Baixar Netbeans Apache: | |
wget http://mirror.nbtelecom.com.br/apache/netbeans/netbeans/12.1/Apache-NetBeans-12.1-bin-linux-x64.sh | |
# Atribuir permissão de execução: | |
sudo chmod +x Apache-NetBeans-12.1-bin-linux-x64.sh | |
# Executar instalador: | |
./Apache-NetBeans-12.1-bin-linux-x64.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Depois, abra o Netbeans e:
Java Standard Edition
, clique Next./usr/lib/jvm/java-13-openjdk-amd64
, clique Finish.