Compare commits

...

3 Commits

Author SHA1 Message Date
946b71bbea Actualizar README.md 2026-05-01 10:54:32 -05:00
2f5867b602 Actualizar tips_RPI.md 2026-04-11 12:06:28 -05:00
ea4d9d3d44 Actualizar README.md
Configuración netplan
2026-03-20 22:41:57 -05:00
2 changed files with 51 additions and 2 deletions

View File

@@ -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! ```

View File

@@ -88,4 +88,19 @@ 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))
[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
```