raspberry
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| raspberry [2021/02/12 20:20] – [Instalar] jose | raspberry [2022/01/29 15:54] (current) – [IP fija] jose | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| dd if=2021-01-11-raspios-buster-armhf-lite.img of=/ | dd if=2021-01-11-raspios-buster-armhf-lite.img of=/ | ||
| - | Nos ha creado dos particiones: | + | Nos ha creado dos particiones: |
| - | - boot | + | - boot\\ |
| - rootfs | - rootfs | ||
| Line 15: | Line 15: | ||
| ===== Habilitar wifi ===== | ===== Habilitar wifi ===== | ||
| En la pertición boot creamos el fichero wpa_supplicant.conf con los datos de nuestro wifi | En la pertición boot creamos el fichero wpa_supplicant.conf con los datos de nuestro wifi | ||
| - | wpa_supplicant.conf | + | |
| < | < | ||
| country=ES | country=ES | ||
| Line 41: | Line 42: | ||
| ===== IP fija ===== | ===== IP fija ===== | ||
| En la partición rootfs editamos el fichero: | En la partición rootfs editamos el fichero: | ||
| - | etc/ | + | |
| Depende si queremos editar wifi o cable ponemos eth0 o wlan0. Por ejemplo, poner por wifi la ip 192.168.1.191 | Depende si queremos editar wifi o cable ponemos eth0 o wlan0. Por ejemplo, poner por wifi la ip 192.168.1.191 | ||
| < | < | ||
| Line 49: | Line 50: | ||
| static domain_name_servers=192.168.1.1 | static domain_name_servers=192.168.1.1 | ||
| </ | </ | ||
| + | |||
| + | Si queremos añadir una ruta: | ||
| + | / | ||
| + | |||
| + | ip route add 10.0.0.0/8 via 10.38.28.6 | ||
| ===== Habilitar SSH ===== | ===== Habilitar SSH ===== | ||
| Creamos un fichero que se llame ssh en la partición boot. Da igual que esté vacio. Podemos hacer: | Creamos un fichero que se llame ssh en la partición boot. Da igual que esté vacio. Podemos hacer: | ||
| - | touch ssh | + | touch boot/ssh |
| Line 66: | Line 72: | ||
| Model : Raspberry Pi 3 Model B Plus Rev 1.3 | Model : Raspberry Pi 3 Model B Plus Rev 1.3 | ||
| </ | </ | ||
| + | |||
| + | ====== Cambiar idioma teclado ====== | ||
| + | Si nos conectamos por ssh tendremos el idioma bien, pero en local no. Se hace con raspi-config: | ||
| + | sudo raspi-config | ||
| + | 5 Localisation Options | ||
| + | L3 Keyboard | ||
| + | | ||
| + | Y se selecciona el idioma | ||
| ====== Monitorización ====== | ====== Monitorización ====== | ||
| Line 84: | Line 98: | ||
| | 0x50000 | ha habido under voltage desde el último reinicio | | | 0x50000 | ha habido under voltage desde el último reinicio | | ||
| | 0x50005 | actualmente under voltage | | | 0x50005 | actualmente under voltage | | ||
| + | |||
| + | ===== Script ===== | ||
| + | |||
| + | < | ||
| + | #!/bin/bash | ||
| + | |||
| + | fecha=`date +\%Y\%m\%d_\%H\%M\%S` | ||
| + | voltios=`vcgencmd measure_volts` | ||
| + | test=" | ||
| + | case $test in | ||
| + | throttled=0x50005) estado=" | ||
| + | throttled=0x50000) estado=" | ||
| + | throttled=0x0) estado=" | ||
| + | *) estado=$test;; | ||
| + | esac | ||
| + | |||
| + | echo $fecha" | ||
| + | </ | ||
| + | |||
| + | ====== Pantallas TFT ====== | ||
| + | Pantalla tàctil de 10" con resolución 1024x600 | ||
| + | |||
| + | Modificar el fichero / | ||
| + | hdmi_group=2 | ||
| + | hdmi_mode=87 | ||
| + | hdmi_cvt 1024 600 60 6 0 0 0 | ||
| + | Puede que con Raspberry 4 falle. También funciona con esto: | ||
| + | disable_overscan=1 | ||
| + | hdmi_cvt=1024 600 3 0 0 0 | ||
raspberry.1613161227.txt.gz · Last modified: by jose
