- Install
wpasupplicant - Turn on wifi radios:
sudo nmcli radio wifi on - Check your devices are recognised even if they're not "managed":
sudo iwconfig - Check your wifi (here called "wlp3s0") is capable of detecting nearby routers:
sudo iwlist wlp3s0 scan - Configure
netplanby dropping a file called01-netcfg.yamlinto/etc/netplan/or edit existing file there. See example below. netplan try,netplan generate,netplan apply.
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
| @ECHO OFF | |
| TITLE Tool update all TRUNK of this project | |
| CLS | |
| ECHO Updating trunk of SVN project | |
| ECHO ============================== | |
| FOR /d %%i IN (TRUNK) DO ( | |
| IF EXIST "%%i\.svn" ( | |
| ECHO DIRECTORY: %%i | |
| CMD /c "cd %%i && svn update" | |
| ECHO ============================== |
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
| Rede WPA/WPA2-PSK | |
| Bem, este processo também é simples, apesar de muitos artigos e tutoriais o complicarem muitas vezes. | |
| Supondo que você já saiba a senha da rede em questão, vamos começar! | |
| Primeiro devemos criar um arquivo de configuração. Calma, mais simples que isto, impossível: | |
| wpa_passphrase nome da rede > /caminho/do/arquivo.conf | |
| Após executar este comando, o terminal irá esperar pela entrada da senha da conexão. Digite-a e pressione enter. |
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
| version: '3.5' | |
| services: | |
| agent: | |
| image: portainer/agent | |
| environment: | |
| # REQUIRED: Should be equal to the service name prefixed by "tasks." when | |
| # deployed inside an overlay network | |
| AGENT_CLUSTER_ADDR: tasks.agent | |
| AGENT_PORT: 9001 |