Geral:
Ctrl + Shift + P Paleta de comando F1 Show
Ctrl + P Quick Open, vá para o arquivo
Ctrl + Shift + N Nova janela / instância
Ctrl + Shift + W Fechar janela / instância
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
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <profiles version="13"> | |
| <profile kind="CodeFormatterProfile" name="Java Conventions DAbM" version="13"> | |
| <setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/> | |
| <setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/> | |
| <setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/> | |
| <setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/> | |
| <setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/> | |
| <setting id="org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment" value="common_lines"/> | |
| <setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/> |
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
| O Eclipse é uma IDE bastante utilizada por desenvolvedores Java. Também tem versões para outras linguagens de programação, mas a comunidade que mais o utiliza é a dessa linguagem. O Eclipse é muito criticado por sua performance que deteriora ao passar do tempo, mas a sua quantidade de ferramentas, principalmente a de Refatoração, na minha opinião, tornam essa IDE viciante, fazendo seus usuários tolerarem sua lentidão eventual. | |
| Esse tutorial ensinará como instalá-lo no Ubuntu, mas deve funcionar para outras distribuições. Foi testado nas versões 11.10, 12.04 e 12.10, mas, como é bastante básico, deverá funcionar para outras versões do sistema. É bastante similar à instalação do Sublime Text 2 que está explicada em um post anterior. | |
| Passo 1 – Baixar o Eclipse | |
| Há diversas versões do Eclipse, cada uma com pacotes pré-instalados que procuram adequar a IDE para seu tipo de uso. Nada impede de que você baixe uma versão básica e vá instalando os plugins que forem necessários para o seu desenvolvimento. | |
| Nesse tuto |
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
| Installing CYGWIN with SSH | |
| 1) Download cygwin setup.exe from http://www.cygwin.com | |
| - Execute setup.exe | |
| - Install from internet | |
| - Root directory: `c:\cygwin` + all users | |
| - Local package directory: use default value | |
| - Select a mirror to download files from | |
| - Select these packages: | |
| - editors > xemacs 21.4.22-1 | |
| - net > openssh 6.1-p |
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 | |
| # Script Autor: 1T (T) Anders | |
| ########################################################################### | |
| ########################################################################### | |
| ########################################################################### | |
| ver_so=`cat /etc/oracle-release` | |
| usuario_logado=$USER | |
| # Rotina principal do script e chamada na ordem abaixo do arquivo | |
| main() { |
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 | |
| # Script Autor: 1T (T) Anders | |
| ########################################################################### | |
| ########################################################################### | |
| ################## ARQUIVOS QUE NÃO PODEM MEXER ########################### | |
| bash_profile_root_file="/root/.bash_profile" | |
| wgetrc_config_file="/etc/wgetrc" | |
| yum_config_file="/etc/yum.conf" | |
| up2date_file="/etc/sysconfig/rhn/up2date" | |
| bashrc_profile_root_file="/root/.bashrc" |
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 | |
| # Script Autor: 1T (T) Anders | |
| ########################################################################### | |
| ########################################################################### | |
| ################## ARQUIVOS QUE NÃO PODEM MEXER ########################### | |
| bash_profile_root_file="/root/.bash_profile" | |
| wgetrc_config_file="/etc/wgetrc" | |
| yum_config_file="/etc/yum.conf" | |
| up2date_file="/etc/sysconfig/rhn/up2date" | |
| bashrc_profile_root_file="/root/.bashrc" |
A Microsoft fez uma parceria com a Canonical para criar o Bash no Ubuntu no Windows, executando uma tecnologia chamada Windows Subsystem for Linux. Abaixo estão as instruções sobre como instalar e configurar o servidor ssh para ser executado automaticamente na inicialização.
- Requisitos:
- Bash do Ubuntu instalado no Windows 10.
- Desinstale e reinstale o servidor ssh usando os seguintes comandos:
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
| #Instalar o Java: | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java8-installer | |
| #Adicione o JAVA_PATH ao .bashrc: | |
| export JAVA_HOME=/usr/lib/jvm/java-8-oracle | |
| export PATH=$JAVA_HOME/bin:$PATH | |
| #Instalar pacotes para conversão do instalador do oracle: |