Configure a VPN :
- Seleciona as configurações da sua VPN
- Acesse o item IPv4
- Selecione o item "Usar esta conexão apenas para recursos neta rede"
Verifique as rotas atualmente definidas
ip route show all
| # if you canno't install bluez-firmware | |
| # | |
| # Add the line below to ```/etc/apt/sources.list``` | |
| # | |
| # deb http://ftp.de.debian.org/debian jessie main non-free | |
| #sudo add-apt-repository ppa:snappy-dev/image | |
| #sudo apt-get update | |
| #sudo apt-get install bluez-firmware |
| sudo add-apt-repository ppa:nilarimogard/webupd8 -y && sudo apt-get update && sudo apt-get install pulseaudio-equalizer |
ENV APACHE_DOCUMENT_ROOT /var/www/mapasculturais/src
RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf
RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
Commands
Exibir menu lateral: F3
Selecionar : v
Selecionar e Copiar : v + (selecionar texto) + y
Recortar : dd
Colar : p
Colar para Esquerda : P
Desfazer : u
Refazer : Ctrl + r
| If you want to merge project-a into project-b: | |
| cd path/to/project-b | |
| git remote add project-a path/to/project-a | |
| git fetch project-a | |
| git merge --allow-unrelated-histories project-a/master # or whichever branch you want to merge | |
| git remote remove project-a | |
| Type the following command: | |
| telnet example.com 25 | |
| If Port 25 is not blocked, you will get a successful 220 response (text may vary). | |
| Trying 64.13.192.208... | |
| Connected to example.com. | |
| Escape character is '^]'. | |
| 220 cl34.gs01.gridserver.com ESMTP Exim 4.63 Tue, 24 Jun 2008 13:45:04 -0700 | |
| If Port 25 is blocked, you will get a connection error or no response at all. | |
| Trying 64.13.192.208... |
| docker run --rm -v $(pwd):/app composer:1.5.1 install |