Compare commits
3 Commits
c2ad5e3fed
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 946b71bbea | |||
| 2f5867b602 | |||
| ea4d9d3d44 |
36
README.md
36
README.md
@@ -369,7 +369,6 @@ para enviar el pakete de encendido desde otro equipo se usa **wakeonlan** en cas
|
||||
#wakeonlan mac
|
||||
wakeonlan 00:e0:1d:67:00:d1
|
||||
```
|
||||
|
||||
se puede crear un alias en .basrc o .zshrc
|
||||
|
||||
|
||||
@@ -377,3 +376,38 @@ se puede crear un alias en .basrc o .zshrc
|
||||
alias server="wakeonlan 00:e0:1d:67:00:d1"
|
||||
|
||||
```
|
||||
### Netplan
|
||||
|
||||
Configuración de red por medio de archivo yml /etc/netplan/xxxxxx.yml
|
||||
|
||||
```yml
|
||||
# Created by Armbian firstlogin script
|
||||
network:
|
||||
wifis:
|
||||
wlan0:
|
||||
dhcp4: no
|
||||
addresses: [192.168.1.241/24]
|
||||
routes:
|
||||
- to: default
|
||||
via: 192.168.1.1
|
||||
nameservers:
|
||||
addresses: [192.168.1.1,8.8.8.8]
|
||||
dhcp6: yes
|
||||
access-points:
|
||||
"CHAPARRO":
|
||||
password: "wifipassword"
|
||||
```
|
||||
```sh
|
||||
|
||||
sudo netplan generate
|
||||
sudo netplan apply
|
||||
```
|
||||
|
||||
### Probar conexión con un puerto ejemplo revisar el puerto 1433
|
||||
|
||||
```bash
|
||||
nc -zv 45.183.247.167 1433
|
||||
|
||||
```
|
||||
salida:
|
||||
``` Connection to 45.183.247.167 1433 port [tcp/ms-sql-s] succeeded! ```
|
||||
|
||||
15
tips_RPI.md
15
tips_RPI.md
@@ -89,3 +89,18 @@ ffmpeg -r 10 -f image2 -pattern_type glob -i 'image*.jpg' -s 1280x720 -vcodec li
|
||||
[http://www.lcdwiki.com/3.5inch_RPi_Display](http://www.lcdwiki.com/3.5inch_RPi_Display)
|
||||
|
||||
[https://www.waveshare.com/wiki/3.5inch_RPi_LCD_(A)](https://www.waveshare.com/wiki/3.5inch_RPi_LCD_(A))
|
||||
|
||||
|
||||
### Instalar OMV
|
||||
|
||||
[https://pimylifeup.com/raspberry-pi-openmediavault/](https://pimylifeup.com/raspberry-pi-openmediavault/)
|
||||
|
||||
```sh
|
||||
wget -O - https://raw.githubusercontent.com/OpenMediaVault-Plugin-Developers/installScript/master/preinstall | sudo bash
|
||||
```
|
||||
reiniciar
|
||||
|
||||
```sh
|
||||
wget -O - https://raw.githubusercontent.com/OpenMediaVault-Plugin-Developers/installScript/master/install | sudo bash
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user