Actualizar 'tips_RPI.md'
This commit is contained in:
24
tips_RPI.md
24
tips_RPI.md
@@ -21,7 +21,8 @@ cd LCD-show/
|
|||||||
sudo ./LCD-hdmi
|
sudo ./LCD-hdmi
|
||||||
```
|
```
|
||||||
|
|
||||||
activar ssh, se crea un archivo con nombre **sh** en la partición **boot**
|
### Activar ssh
|
||||||
|
Se crea un archivo con nombre **sh** en la partición **boot**
|
||||||
|
|
||||||
En le nuevo OS nos toca generar el password creando un archivo **userconf.txt** en la particion boot
|
En le nuevo OS nos toca generar el password creando un archivo **userconf.txt** en la particion boot
|
||||||
con la siguiente estructura *username:pasword_encriptada*
|
con la siguiente estructura *username:pasword_encriptada*
|
||||||
@@ -30,6 +31,27 @@ para encriptar una contraseña usar la siguiente linea:
|
|||||||
echo 'mypassword' | openssl passwd -6 -stdin
|
echo 'mypassword' | openssl passwd -6 -stdin
|
||||||
```
|
```
|
||||||
|
|
||||||
|
reiniciar X
|
||||||
|
```sh
|
||||||
|
sudo systemctl restart display-manager
|
||||||
|
|
||||||
|
```
|
||||||
|
### Autoconectar el WIFI
|
||||||
|
crear un archivo wpa_supplicant.conf en la particion boot
|
||||||
|
|
||||||
|
```sh
|
||||||
|
country=CO
|
||||||
|
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
|
||||||
|
update_config=1
|
||||||
|
network={
|
||||||
|
ssid="YOURSSID"
|
||||||
|
scan_ssid=1
|
||||||
|
psk="YOURPASSWORD"
|
||||||
|
key_mgmt=WPA-PSK
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
[http://www.lcdwiki.com/3.5inch_RPi_Display](http://www.lcdwiki.com/3.5inch_RPi_Display)
|
[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))
|
||||||
Reference in New Issue
Block a user