Created
April 3, 2017 18:07
-
-
Save fabriciorsf/266bf44791d02f286a3a4747974af0fc to your computer and use it in GitHub Desktop.
This file contains 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
#Faltou: | |
#- Wireshark | |
#- Ativar serviços: tracert, telnet | |
apt-get install -y dia pdf-presenter-console gimp mysql-server mysql-client mysql-workbench libmysql-java libopencv-dev logisim lynx libglfw3-dev mesa-utils mpi gnuplot gnuplot-x11 mono-complete cmake apache2 texlive-full | |
###instalar pycharm | |
# add-apt-repository ppa:mystic-mirage/pycharm | |
# apt-get install pycharm-community | |
###Fabrício | |
apt-get remove --purge openjdk-* && apt-get autoremove | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer | |
sudo apt-get install oracle-java8-set-default | |
sudo apt-get install htop octave apache2 libapache2-mod-php wireshark traceroute maven | |
sudo apt-get install python python3 python-pip python3-pip | |
sudo pip install pip -U | |
sudo pip2 install pip -U | |
sudo pip3 install pip -U | |
sudo mkdir /opt/programs | |
sudo chmod -R a+rwx /opt/programs/. | |
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
bash Miniconda3-latest-Linux-x86_64.sh | |
###ATTETION: choose the path '/opt/programs/miniconda3' to install | |
echo 'export MINICONDA="/opt/programs/miniconda3"' | sudo tee /etc/profile.d/miniconda.sh | |
echo 'export PATH="${MINICONDA}/bin:${PATH}"' | sudo tee --append /etc/profile.d/miniconda.sh | |
source /etc/profile.d/miniconda.sh | |
rm Miniconda3-latest-Linux-x86_64.sh | |
sudo chmod -R a+rwx /opt/programs/. | |
####Create the file /etc/apt/sources.list.d/pgdg.list, and add a line for the repository | |
echo 'deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main' | sudo tee /etc/apt/sources.list.d/pgdg.list | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | \ | |
sudo apt-key add - | |
sudo apt-get update | |
apt-get install postgresql | |
#Apache-Tomcat | |
cd ~ | |
wget http://mirror.nbtelecom.com.br/apache/tomcat/tomcat-8/v8.5.8/bin/apache-tomcat-8.5.8.tar.gz | |
tar -vzxf apache-tomcat-8.5.8.tar.gz | |
cp -R apache-tomcat-8.5.8 /opt/programs/ | |
cd /opt/programs | |
ln -s apache-tomcat-8.5.8 apache-tomcat | |
cd ~ | |
rm apache-tomcat-8.5.8.tar.gz | |
#Eclipse IDE for Java Developers | |
cd ~ | |
wget http://eclipse.c3sl.ufpr.br/technology/epp/downloads/release/neon/1a/eclipse-jee-neon-1a-linux-gtk-x86_64.tar.gz | |
tar -vzxf eclipse-jee-neon-1a-linux-gtk-x86_64.tar.gz | |
mv eclipse eclipse_neon | |
cp -R eclipse_neon /opt/programs/ | |
cd /opt/programs | |
ln -s eclipse_neon eclipse | |
cd ~ | |
rm eclipse-jee-neon-1a-linux-gtk-x86_64.tar.gz | |
###FINALIZANDO | |
# apt-get update && apt-get upgrade && apt-get clean && apt-get autoclean && apt-get autoremove | |
###Instalar aplicativo do máquinas_dominio | |
###baixe o arquivo do e-mnail do núcleo e o descompacte | |
pbis-open-8.2.2.2993.linux.x86_64.deb | |
###dê a permissão e instale com os comando. | |
chmod +x pbis-open-8.2.2.2993.linux.x86_64.sh | |
./pbis-open-8.2.2.2993.linux.x86_64.sh | |
depois remova os arquivos. | |
rm -Rf pbis-open-8.2.2.2993.linux.x86_64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment