Raspi aislada con modem usb ZTE MF833V

¿Algo falla o no sabes como funciona? Pide ayuda aquí!
Avatar de Usuario
egrueda
Pi God
Pi God
Mensajes: 3426
Registrado: 10 Feb 2017, 19:31
Agradecido: 7 veces
Agradecimiento recibido: 269 veces

chve escribió: 20 Ago 2021, 19:39 He creado una tarea cron para que ejecute wvdial al arranque del sistema.
Mala idea :-D
Para eso tienes los scripts de systemd, precisamente para controlar los servicios en el arranque y sobre todo, las dependencias entre ellos y el orden de arranque.
chve escribió: 20 Ago 2021, 19:39 He seguido tu consejo de crear la red wifi independiente. Instalado hostapd y dnsmasq.
Bueno, no creo que ese haya sido mi consejo xD
Pero entiendo que ahora puedes quitar el router y que la conexión wifi va directamente del dispositivo a la raspi, ¿es correcto?
chve escribió: 20 Ago 2021, 19:39 He podido acceder desde la wifi por ssh a la raspberry con IP 25.25.25.1
No deberías usar IPs públicas (25.25.25.1) para una red privada.
Las redes privadas existen por una razón: 192.168.0.0, 172.16.0.0, 10.0.0.0
chve escribió: 20 Ago 2021, 19:39 aunque al querer acceder a webmin solo puedo bajo la dirección 192.168.0.2, que es la estática de ethernet. ¿Ves esto lógico si conecto desde la wifi?... :?
Webmin escucha en una o varias interfaces. Deberás decirle a webmin que escuche en la wlan0 y no en la eth0. O que escuche en todas las interfaces.
https://doxfer.webmin.com/Webmin/Webmin ... _Addresses
Estos usuarios agradecieron al autor egrueda por el mensaje:
chve
Avatar de Usuario
chve
Pi Alpha
Pi Alpha
Mensajes: 28
Registrado: 17 Ago 2021, 00:13
Agradecido: 2 veces
Agradecimiento recibido: 0

egrueda escribió: 21 Ago 2021, 10:00
chve escribió: 20 Ago 2021, 19:39 He creado una tarea cron para que ejecute wvdial al arranque del sistema.
Mala idea :-D
Para eso tienes los scripts de systemd, precisamente para controlar los servicios en el arranque y sobre todo, las dependencias entre ellos y el orden de arranque.
:destroyer
Seria algo así???---
wvdial.service

Código: Seleccionar todo

[Unit]
Description=GSM Modem

[Service]
Type=simple
ExecStart=/usr/bin/wvdial
egrueda escribió: 21 Ago 2021, 10:00
chve escribió: 20 Ago 2021, 19:39 He seguido tu consejo de crear la red wifi independiente. Instalado hostapd y dnsmasq.
Bueno, no creo que ese haya sido mi consejo xD
Pero entiendo que ahora puedes quitar el router y que la conexión wifi va directamente del dispositivo a la raspi, ¿es correcto?
:xd Bueno, yo me entiendo...
Si, puedo quitar ya el router, pro quiero establecer primero el túnel vpn.

Agradezco muchísimo tu ayuda. Lo pongo todo en practica esta noche. :fumando
Avatar de Usuario
egrueda
Pi God
Pi God
Mensajes: 3426
Registrado: 10 Feb 2017, 19:31
Agradecido: 7 veces
Agradecimiento recibido: 269 veces

Podemos hacer un script mas o menos así:

/etc/systemd/system/wvdial.service

Código: Seleccionar todo

[Unit]
Description=WvDial 4G
After=network.target

[Service]
Restart=always
Type=simple
ExecStart=/usr/bin/wvdial

[Install]
WantedBy=multi-user.target
Después recargamos los cambios:
systemctl daemon-reload

Arrancamos manualmente:
systemctl start wvdial

Comprobamos si ha funcionado:
systemctl status wvdial

Y si todo va bien, lo habilitamos:
systemctl enable wvdial
Avatar de Usuario
chve
Pi Alpha
Pi Alpha
Mensajes: 28
Registrado: 17 Ago 2021, 00:13
Agradecido: 2 veces
Agradecimiento recibido: 0

Hola. :|
No funciona en el arranque

Código: Seleccionar todo

● wvdial.service - Wvdial GSM Modem
   Loaded: loaded (/etc/systemd/system/wvdial.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Sun 2021-08-22 13:46:29 UTC; 3min 12s ago
  Process: 751 ExecStart=/usr/bin/wvdial (code=exited, status=1/FAILURE)
 Main PID: 751 (code=exited, status=1/FAILURE)

ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, schedul
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is
ago 22 13:46:29 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Start request repeated too quickly.
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
ago 22 13:46:29 raspberrypi systemd[1]: Failed to start Wvdial GSM Modem.
...skipping...
● wvdial.service - Wvdial GSM Modem
   Loaded: loaded (/etc/systemd/system/wvdial.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Sun 2021-08-22 13:46:29 UTC; 3min 12s ago
  Process: 751 ExecStart=/usr/bin/wvdial (code=exited, status=1/FAILURE)
 Main PID: 751 (code=exited, status=1/FAILURE)

ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, schedul
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is
ago 22 13:46:29 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Start request repeated too quickly.
ago 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
ago 22 13:46:29 raspberrypi systemd[1]: Failed to start Wvdial GSM Modem.

Código: Seleccionar todo

Starting LSB: web-based administration interface for Unix systems...
Aug 22 13:46:28 raspberrypi kernel: [   20.326795] usb 1-1.2: New USB device found, idVendor=19d2, idProduct=1421, bcdDevice=50.15
Aug 22 13:46:28 raspberrypi kernel: [   20.326821] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 22 13:46:28 raspberrypi kernel: [   20.326832] usb 1-1.2: Product: ZTE Mobile Broadband
Aug 22 13:46:28 raspberrypi kernel: [   20.326870] usb 1-1.2: Manufacturer: ZTE,Incorporated
Aug 22 13:46:28 raspberrypi kernel: [   20.326880] usb 1-1.2: SerialNumber: 1234567890ABCDEF
Aug 22 13:46:28 raspberrypi kernel: [   20.330504] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Aug 22 13:46:28 raspberrypi kernel: [   20.334226] scsi host1: usb-storage 1-1.2:1.0
Aug 22 13:46:28 raspberrypi systemd[1]: Starting Permit User Sessions...
Aug 22 13:46:28 raspberrypi systemd[1]: Starting /etc/rc.local Compatibility...
Aug 22 13:46:28 raspberrypi mtp-probe: checking bus 1, device 6: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 22 13:46:28 raspberrypi mtp-probe: bus: 1, device: 6 was not an MTP device
Aug 22 13:46:28 raspberrypi systemd[1]: Starting OpenBSD Secure Shell server...
Aug 22 13:46:28 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 22 13:46:28 raspberrypi mtp-probe: checking bus 1, device 6: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 22 13:46:28 raspberrypi mtp-probe: bus: 1, device: 6 was not an MTP device
Aug 22 13:46:28 raspberrypi systemd[1]: Starting Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator...
Aug 22 13:46:28 raspberrypi systemd[1]: Starting dnsmasq - A lightweight DHCP and caching DNS server...
Aug 22 13:46:28 raspberrypi systemd[1]: Started Permit User Sessions.
Aug 22 13:46:28 raspberrypi systemd[1]: Started /etc/rc.local Compatibility.
Aug 22 13:46:28 raspberrypi systemd[1]: Started Getty on tty1.
Aug 22 13:46:28 raspberrypi systemd[1]: Reached target Login Prompts.
Aug 22 13:46:28 raspberrypi hostapd[659]: Configuration file: /etc/hostapd/hostapd.conf
Aug 22 13:46:28 raspberrypi hostapd[659]: wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE
Aug 22 13:46:28 raspberrypi systemd[1]: Started Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator.
Aug 22 13:46:28 raspberrypi dnsmasq[660]: dnsmasq: revisión de sintaxis OK.
Aug 22 13:46:28 raspberrypi wvdial[657]: --> WvDial: Internet dialer version 1.61
Aug 22 13:46:28 raspberrypi wvdial[657]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi wvdial[657]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi wvdial[657]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:28 raspberrypi kernel: [   20.922253] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Aug 22 13:46:28 raspberrypi dhcpcd[640]: wlan0: carrier acquired
Aug 22 13:46:28 raspberrypi dhcpcd[640]: wlan0: IAID eb:80:d6:fc
Aug 22 13:46:28 raspberrypi dhcpcd[640]: wlan0: adding address fe80::1dd7:174e:ddbc:cb12
Aug 22 13:46:28 raspberrypi avahi-daemon[497]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::1dd7:174e:ddbc:cb12.
Aug 22 13:46:28 raspberrypi avahi-daemon[497]: New relevant interface wlan0.IPv6 for mDNS.
Aug 22 13:46:28 raspberrypi avahi-daemon[497]: Registering new address record for fe80::1dd7:174e:ddbc:cb12 on wlan0.*.
Aug 22 13:46:28 raspberrypi dhcpcd[640]: wlan0: probing address 192.168.10.1/24
Aug 22 13:46:28 raspberrypi dnsmasq[675]: iniciado, versión 2.80 tamaño de caché 150
Aug 22 13:46:28 raspberrypi dnsmasq[675]: opciones de compilación: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify dumpfile
Aug 22 13:46:28 raspberrypi dnsmasq-dhcp[675]: DHCP, IP range 192.168.10.3 -- 192.168.10.5, tiempo de concesión1d
Aug 22 13:46:28 raspberrypi dnsmasq[675]: leyendo /run/dnsmasq/resolv.conf
Aug 22 13:46:28 raspberrypi dnsmasq[675]: usando nombre de servidor 8.8.8.8#53
Aug 22 13:46:28 raspberrypi dnsmasq[675]: usando nombre de servidor 4.4.4.4#53
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 22 13:46:28 raspberrypi dnsmasq[675]: direcciónes /etc/hosts - 5 leídas
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 1.
Aug 22 13:46:28 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 22 13:46:28 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 22 13:46:28 raspberrypi dhcpcd[640]: wlan0: soliciting an IPv6 router
Aug 22 13:46:28 raspberrypi wvdial[678]: --> WvDial: Internet dialer version 1.61
Aug 22 13:46:28 raspberrypi wvdial[678]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi wvdial[678]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi wvdial[678]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:28 raspberrypi systemd[1]: Started OpenBSD Secure Shell server.
Aug 22 13:46:28 raspberrypi dnsmasq[676]: Too few arguments.
Aug 22 13:46:28 raspberrypi systemd[1]: Started dnsmasq - A lightweight DHCP and caching DNS server.
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 22 13:46:28 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 2.
Aug 22 13:46:28 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi systemd[1]: Reached target Host and Network Name Lookups.
Aug 22 13:46:29 raspberrypi wvdial[730]: --> WvDial: Internet dialer version 1.61
Aug 22 13:46:29 raspberrypi wvdial[730]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[730]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[730]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:29 raspberrypi systemd[1]: Started LSB: Update dynamic domain name service entries.
Aug 22 13:46:29 raspberrypi ddclient[731]: WARNING:  file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = ''
Aug 22 13:46:29 raspberrypi kernel: [   21.356751] scsi 1:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
Aug 22 13:46:29 raspberrypi kernel: [   21.364583] scsi 1:0:0:0: Attached scsi generic sg1 type 5
Aug 22 13:46:29 raspberrypi kernel: [   21.368114] scsi 1:0:0:1: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2
Aug 22 13:46:29 raspberrypi kernel: [   21.368967] sd 1:0:0:1: Attached scsi generic sg2 type 0
Aug 22 13:46:29 raspberrypi kernel: [   21.370959] sd 1:0:0:1: Power-on or device reset occurred
Aug 22 13:46:29 raspberrypi kernel: [   21.383653] sr 1:0:0:0: Power-on or device reset occurred
Aug 22 13:46:29 raspberrypi kernel: [   21.393274] sr 1:0:0:0: [sr0] scsi-1 drive
Aug 22 13:46:29 raspberrypi kernel: [   21.393292] cdrom: Uniform CD-ROM driver Revision: 3.20
Aug 22 13:46:29 raspberrypi ddclient[731]: WARNING:  skipping update of www.con-ip.com/actualiza_subdominio.php?subdominio=meteo&user=chve&id=98c094ff839ccac735274b545982858b from <nothing> to 192.168.0.2.
Aug 22 13:46:29 raspberrypi ddclient[731]: WARNING:   last updated <never> but last attempt on Sun Aug 22 13:42:14 2021 failed.
Aug 22 13:46:29 raspberrypi ddclient[731]: WARNING:   Wait at least 5 minutes between update attempts.
Aug 22 13:46:29 raspberrypi systemd[1]: Started Lighttpd Daemon.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 3.
Aug 22 13:46:29 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi kernel: [   21.455421] sd 1:0:0:1: [sdb] Attached SCSI removable disk
Aug 22 13:46:29 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi kernel: [   21.475731] sr 1:0:0:0: Attached scsi CD-ROM sr0
Aug 22 13:46:29 raspberrypi wvdial[742]: --> WvDial: Internet dialer version 1.61
Aug 22 13:46:29 raspberrypi wvdial[742]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[742]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[742]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 4.
Aug 22 13:46:29 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi wvdial[751]: --> WvDial: Internet dialer version 1.61
Aug 22 13:46:29 raspberrypi wvdial[751]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[751]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi wvdial[751]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 5.
Aug 22 13:46:29 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Start request repeated too quickly.
Aug 22 13:46:29 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 22 13:46:29 raspberrypi systemd[1]: Failed to start Wvdial GSM Modem.
Si ejecuto sudo systemctl start wvdial, arranca sin problemas.
¿Podríamos ejecutarlo cuando haya finalizado el arranque?... Esta linea sirve para eso, ¿no?...

Código: Seleccionar todo

After=network.target
Un saludo :)
Avatar de Usuario
egrueda
Pi God
Pi God
Mensajes: 3426
Registrado: 10 Feb 2017, 19:31
Agradecido: 7 veces
Agradecimiento recibido: 269 veces

Veo muchas veces repetido el mismo errror:
Cannot open /dev/ttyUSB1: No such file or directory
Aunque no me queda claro por qué ocurre, parece que está arrancando demasiado pronto, tal como apuntas.

Puedes hacer dos cambios en el script:
1. After=multi-user.target
2. WantedBy=custom.target

Quedaría algo así:

Código: Seleccionar todo

[Unit]
Description=WvDial 4G
After=multi-user.target

[Service]
Restart=always
Type=simple
ExecStart=/usr/bin/wvdial

[Install]
WantedBy=custom.target
Con eso conseguimos que arranque al final, ¿pruebas?
Avatar de Usuario
chve
Pi Alpha
Pi Alpha
Mensajes: 28
Registrado: 17 Ago 2021, 00:13
Agradecido: 2 veces
Agradecimiento recibido: 0

El Animalico dice que no

Código: Seleccionar todo

Aug 23 16:48:44 raspberrypi systemd[1]: Started udev Coldplug all Devices.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Helper to synchronize boot up for ifupdown...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Helper to synchronize boot up for ifupdown.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Remount Root and Kernel File Systems.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Create System Users...
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Create System Users.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Create Static Device Nodes in /dev.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting udev Kernel Device Manager...
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Local File Systems (Pre).
Aug 23 16:48:44 raspberrypi systemd[1]: Started udev Kernel Device Manager.
Aug 23 16:48:44 raspberrypi systemd[1]: Found device SanDisk_3.2Gen1 1.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Uncomplicated firewall.
Aug 23 16:48:44 raspberrypi systemd[1]: var.mount: Directory /var to mount over is not empty, mounting anyway.
Aug 23 16:48:44 raspberrypi systemd[1]: Mounting /var...
Aug 23 16:48:44 raspberrypi systemd[1]: Mounted /var.
Aug 23 16:48:44 raspberrypi mtp-probe: checking bus 1, device 5: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5"
Aug 23 16:48:44 raspberrypi mtp-probe: checking bus 1, device 4: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3"
Aug 23 16:48:44 raspberrypi mtp-probe: checking bus 1, device 3: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.1"
Aug 23 16:48:44 raspberrypi mtp-probe: bus: 1, device: 5 was not an MTP device
Aug 23 16:48:44 raspberrypi mtp-probe: bus: 1, device: 4 was not an MTP device
Aug 23 16:48:44 raspberrypi mtp-probe: bus: 1, device: 3 was not an MTP device
Aug 23 16:48:44 raspberrypi systemd-udevd[206]: Using default interface naming scheme 'v240'.
Aug 23 16:48:44 raspberrypi systemd[1]: Found device /dev/disk/by-partuuid/0f0cf00c-01.
Aug 23 16:48:44 raspberrypi systemd-udevd[212]: Using default interface naming scheme 'v240'.
Aug 23 16:48:44 raspberrypi systemd-udevd[211]: Process '/usr/sbin/th-cmd --socket /var/run/thd.socket --passfd --udev' failed with exit code 1.
Aug 23 16:48:44 raspberrypi systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in FUSE Control File System being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Huge Pages File System being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting File System Check on /dev/disk/by-partuuid/0f0cf00c-01...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Load/Save Random Seed...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Load/Save RF Kill Switch Status...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Load/Save Random Seed.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Load/Save RF Kill Switch Status.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Flush Journal to Persistent Storage.
Aug 23 16:48:44 raspberrypi systemd-fsck[375]: fsck.fat 4.1 (2017-01-24)
Aug 23 16:48:44 raspberrypi systemd-fsck[375]: /dev/mmcblk0p1: 276 files, 98343/516190 clusters
Aug 23 16:48:44 raspberrypi systemd[1]: Started File System Check on /dev/disk/by-partuuid/0f0cf00c-01.
Aug 23 16:48:44 raspberrypi systemd[1]: Mounting /boot...
Aug 23 16:48:44 raspberrypi systemd[1]: Mounted /boot.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Local File Systems.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Set console font and keymap...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting netfilter persistent configuration...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Preprocess NFS configuration...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Create Volatile Files and Directories...
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Set console font and keymap.
Aug 23 16:48:44 raspberrypi systemd[1]: nfs-config.service: Succeeded.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Preprocess NFS configuration.
Aug 23 16:48:44 raspberrypi netfilter-persistent[383]: run-parts: executing /usr/share/netfilter-persistent/plugins.d/15-ip4tables start
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in RPC security service for NFS client and server being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in RPC security service for NFS server being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target NFS client services.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Remote File Systems (Pre).
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Remote File Systems.
Aug 23 16:48:44 raspberrypi netfilter-persistent[383]: run-parts: executing /usr/share/netfilter-persistent/plugins.d/25-ip6tables start
Aug 23 16:48:44 raspberrypi systemd[1]: Started Create Volatile Files and Directories.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Network Time Synchronization...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 23 16:48:44 raspberrypi systemd[1]: Started netfilter persistent configuration.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Network (Pre).
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Raise network interfaces...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Network Time Synchronization.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target System Initialization.
Aug 23 16:48:44 raspberrypi systemd[1]: Listening on triggerhappy.socket.
Aug 23 16:48:44 raspberrypi systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Aug 23 16:48:44 raspberrypi systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Sockets.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Basic System.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Manage Sound Card State (restore and store).
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Turn on SSH if /boot/ssh is present being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Configure Bluetooth Modems connected by UART...
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in Copy user wpa_supplicant.conf being skipped.
Aug 23 16:48:44 raspberrypi alsactl[448]: alsactl 1.1.8 daemon started
Aug 23 16:48:44 raspberrypi systemd[1]: Starting triggerhappy global hotkey daemon...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting dphys-swapfile - set up, mount/unmount, and delete a swap file...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Regular background program processing daemon.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Login Service...
Aug 23 16:48:44 raspberrypi thd[450]: Found socket passed from systemd
Aug 23 16:48:44 raspberrypi cron[457]: (CRON) INFO (pidfile fd = 3)
Aug 23 16:48:44 raspberrypi systemd[1]: Started D-Bus System Message Bus.
Aug 23 16:48:44 raspberrypi cron[457]: (CRON) INFO (Running @reboot jobs)
Aug 23 16:48:44 raspberrypi systemd[1]: Starting WPA supplicant...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Check for Raspberry Pi EEPROM updates...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting LSB: Start Motion detection...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Save/Restore Sound Card State...
Aug 23 16:48:44 raspberrypi systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting rng-tools.service...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting LSB: Switch to ondemand cpu governor (unless shift key is pressed)...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Aug 23 16:48:44 raspberrypi systemd[1]: Starting System Logging Service...
Aug 23 16:48:44 raspberrypi rng-tools[487]: Starting Hardware RNG entropy gatherer daemon: rngd.
Aug 23 16:48:44 raspberrypi rngd[502]: rngd 2-unofficial-mt.14 starting up...
Aug 23 16:48:44 raspberrypi rpi-eeprom-update[479]: This tool only works with a Raspberry Pi 4
Aug 23 16:48:44 raspberrypi systemd[1]: Starting dhcpcd on all interfaces...
Aug 23 16:48:44 raspberrypi systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target System Time Synchronized.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Daily apt download activities.
Aug 23 16:48:44 raspberrypi rngd[502]: entropy feed to the kernel ready
Aug 23 16:48:44 raspberrypi systemd[1]: Started Daily apt upgrade and clean activities.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Daily man-db regeneration.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Daily rotation of log files.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Timers.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting LSB: weewx weather system...
Aug 23 16:48:44 raspberrypi btuart[449]: Cannot open directory '/etc/firmware': No such file or directory
Aug 23 16:48:44 raspberrypi btuart[449]: Patch not found, continue anyway
Aug 23 16:48:44 raspberrypi systemd[1]: Started triggerhappy global hotkey daemon.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Raise network interfaces.
Aug 23 16:48:44 raspberrypi systemd[1]: pppd-dns.service: Succeeded.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Check for Raspberry Pi EEPROM updates.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Save/Restore Sound Card State.
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Found user 'avahi' (UID 108) and group 'avahi' (GID 113).
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Successfully dropped root privileges.
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: avahi-daemon 0.7 starting up.
Aug 23 16:48:44 raspberrypi systemd[1]: Started rng-tools.service.
Aug 23 16:48:44 raspberrypi dphys-swapfile[452]: want /var/swap=10000MByte, restricting to config limit: 2048MBytes, checking existing: keeping it
Aug 23 16:48:44 raspberrypi dhcpcd[516]: dev: loaded udev
Aug 23 16:48:44 raspberrypi rsyslogd: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd.  [v8.1901.0]
Aug 23 16:48:44 raspberrypi rsyslogd:  [origin software="rsyslogd" swVersion="8.1901.0" x-pid="499" x-info="https://www.rsyslog.com"] start
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Successfully called chroot().
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Successfully dropped remaining capabilities.
Aug 23 16:48:44 raspberrypi systemd[1]: Started System Logging Service.
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: No service file found in /etc/avahi/services.
Aug 23 16:48:44 raspberrypi kernel: [    1.950867] FS-Cache: Netfs 'nfs' registered for caching
Aug 23 16:48:44 raspberrypi kernel: [    1.951793] NFS: Registering the id_resolver key type
Aug 23 16:48:44 raspberrypi kernel: [    1.951865] Key type id_resolver registered
Aug 23 16:48:44 raspberrypi kernel: [    1.951895] Key type id_legacy registered
Aug 23 16:48:44 raspberrypi kernel: [    1.952064] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
Aug 23 16:48:44 raspberrypi kernel: [    1.952099] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
Aug 23 16:48:44 raspberrypi kernel: [    1.953335] Key type asymmetric registered
Aug 23 16:48:44 raspberrypi kernel: [    1.953368] Asymmetric key parser 'x509' registered
Aug 23 16:48:44 raspberrypi kernel: [    1.953441] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Aug 23 16:48:44 raspberrypi kernel: [    1.953481] io scheduler mq-deadline registered
Aug 23 16:48:44 raspberrypi kernel: [    1.953510] io scheduler kyber registered
Aug 23 16:48:44 raspberrypi kernel: [    1.958746] bcm2708_fb soc:fb: FB found 1 display(s)
Aug 23 16:48:44 raspberrypi kernel: [    1.971216] Console: switching to colour frame buffer device 82x26
Aug 23 16:48:44 raspberrypi kernel: [    1.978523] bcm2708_fb soc:fb: Registered framebuffer for display 0, size 656x416
Aug 23 16:48:44 raspberrypi kernel: [    1.989100] bcm2835-rng 3f104000.rng: hwrng registered
Aug 23 16:48:44 raspberrypi kernel: [    1.992090] vc-mem: phys_addr:0x00000000 mem_base=0x3ec00000 mem_size:0x40000000(1024 MiB)
Aug 23 16:48:44 raspberrypi kernel: [    1.998001] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
Aug 23 16:48:44 raspberrypi kernel: [    2.015462] brd: module loaded
Aug 23 16:48:44 raspberrypi kernel: [    2.030267] loop: module loaded
Aug 23 16:48:44 raspberrypi kernel: [    2.034745] Loading iSCSI transport class v2.0-870.
Aug 23 16:48:44 raspberrypi kernel: [    2.039026] libphy: Fixed MDIO Bus: probed
Aug 23 16:48:44 raspberrypi kernel: [    2.041947] usbcore: registered new interface driver lan78xx
Aug 23 16:48:44 raspberrypi kernel: [    2.044655] usbcore: registered new interface driver smsc95xx
Aug 23 16:48:44 raspberrypi kernel: [    2.047201] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
Aug 23 16:48:44 raspberrypi kernel: [    2.778025] Core Release: 2.80a
Aug 23 16:48:44 raspberrypi kernel: [    2.780507] Setting default values for core params
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Network interface enumeration completed.
Aug 23 16:48:44 raspberrypi kernel: [    2.782963] Finished setting default values for core params
Aug 23 16:48:44 raspberrypi kernel: [    2.985838] Using Buffer DMA mode
Aug 23 16:48:44 raspberrypi kernel: [    2.988302] Periodic Transfer Interrupt Enhancement - disabled
Aug 23 16:48:44 raspberrypi kernel: [    2.990844] Multiprocessor Interrupt Enhancement - disabled
Aug 23 16:48:44 raspberrypi kernel: [    2.993376] OTG VER PARAM: 0, OTG VER FLAG: 0
Aug 23 16:48:44 raspberrypi kernel: [    2.995881] Dedicated Tx FIFOs mode
Aug 23 16:48:44 raspberrypi kernel: [    2.998766] 
Aug 23 16:48:44 raspberrypi kernel: [    2.998788] WARN::dwc_otg_hcd_init:1074: FIQ DMA bounce buffers: virt = b7504000 dma = 0xf7504000 len=9024
Aug 23 16:48:44 raspberrypi kernel: [    3.005753] FIQ FSM acceleration enabled for :
Aug 23 16:48:44 raspberrypi kernel: [    3.005753] Non-periodic Split Transactions
Aug 23 16:48:44 raspberrypi kernel: [    3.005753] Periodic Split Transactions
Aug 23 16:48:44 raspberrypi kernel: [    3.005753] High-Speed Isochronous Endpoints
Aug 23 16:48:44 raspberrypi kernel: [    3.005753] Interrupt/Control Split Transaction hack enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.016647] dwc_otg: Microframe scheduler enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.016715] 
Aug 23 16:48:44 raspberrypi kernel: [    3.016725] WARN::hcd_init_fiq:457: FIQ on core 1
Aug 23 16:48:44 raspberrypi kernel: [    3.021034] 
Aug 23 16:48:44 raspberrypi kernel: [    3.021044] WARN::hcd_init_fiq:458: FIQ ASM at 807c8de0 length 36
Aug 23 16:48:44 raspberrypi kernel: [    3.025475] 
Aug 23 16:48:44 raspberrypi kernel: [    3.025484] WARN::hcd_init_fiq:497: MPHI regs_base at bb810000
Aug 23 16:48:44 raspberrypi kernel: [    3.029947] dwc_otg 3f980000.usb: DWC OTG Controller
Aug 23 16:48:44 raspberrypi kernel: [    3.032261] dwc_otg 3f980000.usb: new USB bus registered, assigned bus number 1
Aug 23 16:48:44 raspberrypi kernel: [    3.034656] dwc_otg 3f980000.usb: irq 89, io mem 0x00000000
Aug 23 16:48:44 raspberrypi kernel: [    3.036982] Init: Port Power? op_state=1
Aug 23 16:48:44 raspberrypi kernel: [    3.039214] Init: Power Port (0)
Aug 23 16:48:44 raspberrypi kernel: [    3.041746] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Aug 23 16:48:44 raspberrypi kernel: [    3.046364] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 23 16:48:44 raspberrypi kernel: [    3.048829] usb usb1: Product: DWC OTG Controller
Aug 23 16:48:44 raspberrypi kernel: [    3.051185] usb usb1: Manufacturer: Linux 5.10.52-v7+ dwc_otg_hcd
Aug 23 16:48:44 raspberrypi kernel: [    3.053579] usb usb1: SerialNumber: 3f980000.usb
Aug 23 16:48:44 raspberrypi kernel: [    3.056758] hub 1-0:1.0: USB hub found
Aug 23 16:48:44 raspberrypi kernel: [    3.059206] hub 1-0:1.0: 1 port detected
Aug 23 16:48:44 raspberrypi kernel: [    3.062798] dwc_otg: FIQ enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.062811] dwc_otg: NAK holdoff enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.062823] dwc_otg: FIQ split-transaction FSM enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.062841] Module dwc_common_port init
Aug 23 16:48:44 raspberrypi kernel: [    3.063149] usbcore: registered new interface driver usb-storage
Aug 23 16:48:44 raspberrypi kernel: [    3.065889] mousedev: PS/2 mouse device common for all mice
Aug 23 16:48:44 raspberrypi kernel: [    3.069528] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer
Aug 23 16:48:44 raspberrypi kernel: [    3.074801] sdhci: Secure Digital Host Controller Interface driver
Aug 23 16:48:44 raspberrypi kernel: [    3.077332] sdhci: Copyright(c) Pierre Ossman
Aug 23 16:48:44 raspberrypi kernel: [    3.080412] mmc-bcm2835 3f300000.mmcnr: could not get clk, deferring probe
Aug 23 16:48:44 raspberrypi kernel: [    3.083656] sdhost-bcm2835 3f202000.mmc: could not get clk, deferring probe
Aug 23 16:48:44 raspberrypi kernel: [    3.086506] sdhci-pltfm: SDHCI platform and OF driver helper
Aug 23 16:48:44 raspberrypi kernel: [    3.090963] ledtrig-cpu: registered to indicate activity on CPUs
Aug 23 16:48:44 raspberrypi kernel: [    3.093979] hid: raw HID events driver (C) Jiri Kosina
Aug 23 16:48:44 raspberrypi kernel: [    3.096797] usbcore: registered new interface driver usbhid
Aug 23 16:48:44 raspberrypi kernel: [    3.099395] usbhid: USB HID core driver
Aug 23 16:48:44 raspberrypi kernel: [    3.107219] Initializing XFRM netlink socket
Aug 23 16:48:44 raspberrypi kernel: [    3.109831] NET: Registered protocol family 17
Aug 23 16:48:44 raspberrypi kernel: [    3.112445] Key type dns_resolver registered
Aug 23 16:48:44 raspberrypi kernel: [    3.115503] Registering SWP/SWPB emulation handler
Aug 23 16:48:44 raspberrypi kernel: [    3.118001] registered taskstats version 1
Aug 23 16:48:44 raspberrypi kernel: [    3.120337] Loading compiled-in X.509 certificates
Aug 23 16:48:44 raspberrypi kernel: [    3.123573] Key type ._fscrypt registered
Aug 23 16:48:44 raspberrypi kernel: [    3.125931] Key type .fscrypt registered
Aug 23 16:48:44 raspberrypi kernel: [    3.128259] Key type fscrypt-provisioning registered
Aug 23 16:48:44 raspberrypi kernel: [    3.142243] uart-pl011 3f201000.serial: cts_event_workaround enabled
Aug 23 16:48:44 raspberrypi kernel: [    3.144792] 3f201000.serial: ttyAMA0 at MMIO 0x3f201000 (irq = 114, base_baud = 0) is a PL011 rev2
Aug 23 16:48:44 raspberrypi kernel: [    3.151846] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver
Aug 23 16:48:44 raspberrypi kernel: [    3.156098] mmc-bcm2835 3f300000.mmcnr: mmc_debug:0 mmc_debug2:0
Aug 23 16:48:44 raspberrypi kernel: [    3.158577] mmc-bcm2835 3f300000.mmcnr: DMA channel allocated
Aug 23 16:48:44 raspberrypi kernel: [    3.185936] Indeed it is in host mode hprt0 = 00021501
Aug 23 16:48:44 raspberrypi kernel: [    3.248467] sdhost: log_buf @ (ptrval) (f7507000)
Aug 23 16:48:44 raspberrypi kernel: [    3.286639] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
Aug 23 16:48:44 raspberrypi kernel: [    3.290646] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
Aug 23 16:48:44 raspberrypi kernel: [    3.294551] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
Aug 23 16:48:44 raspberrypi kernel: [    3.299716] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
Aug 23 16:48:44 raspberrypi kernel: [    3.301863] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
Aug 23 16:48:44 raspberrypi kernel: [    3.306960] of_cfs_init
Aug 23 16:48:44 raspberrypi kernel: [    3.309280] of_cfs_init: OK
Aug 23 16:48:44 raspberrypi kernel: [    3.312419] Waiting for root device PARTUUID=0f0cf00c-02...
Aug 23 16:48:44 raspberrypi kernel: [    3.391123] mmc0: host does not support reading read-only switch, assuming write-enable
Aug 23 16:48:44 raspberrypi kernel: [    3.395503] usb 1-1: new high-speed USB device number 2 using dwc_otg
Aug 23 16:48:44 raspberrypi kernel: [    3.398018] Indeed it is in host mode hprt0 = 00001101
Aug 23 16:48:44 raspberrypi motion[480]: Not starting motion daemon, disabled via /etc/default/motion ... (warning).
Aug 23 16:48:44 raspberrypi avahi-daemon[495]: Server startup complete. Host name is raspberrypi.local. Local service cookie is 2544864061.
Aug 23 16:48:44 raspberrypi systemd[1]: Started dphys-swapfile - set up, mount/unmount, and delete a swap file.
Aug 23 16:48:44 raspberrypi kernel: [    3.461935] mmc0: new high speed SDHC card at address aaaa
Aug 23 16:48:44 raspberrypi kernel: [    3.465316] mmcblk0: mmc0:aaaa SB16G 14.8 GiB
Aug 23 16:48:44 raspberrypi kernel: [    3.473499]  mmcblk0: p1 p2
Aug 23 16:48:44 raspberrypi kernel: [    3.502397] mmc1: new high speed SDIO card at address 0001
Aug 23 16:48:44 raspberrypi kernel: [    3.508588] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Aug 23 16:48:44 raspberrypi kernel: [    3.513055] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
Aug 23 16:48:44 raspberrypi kernel: [    3.526557] devtmpfs: mounted
Aug 23 16:48:44 raspberrypi kernel: [    3.535851] Freeing unused kernel memory: 1024K
Aug 23 16:48:44 raspberrypi kernel: [    3.574903] Run /sbin/init as init process
Aug 23 16:48:44 raspberrypi kernel: [    3.577272]   with arguments:
Aug 23 16:48:44 raspberrypi kernel: [    3.577284]     /sbin/init
Aug 23 16:48:44 raspberrypi kernel: [    3.577294]   with environment:
Aug 23 16:48:44 raspberrypi kernel: [    3.577305]     HOME=/
Aug 23 16:48:44 raspberrypi kernel: [    3.577317]     TERM=linux
Aug 23 16:48:44 raspberrypi kernel: [    3.634779] usb 1-1: New USB device found, idVendor=0424, idProduct=9514, bcdDevice= 2.00
Aug 23 16:48:44 raspberrypi kernel: [    3.639939] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 23 16:48:44 raspberrypi kernel: [    3.643572] hub 1-1:1.0: USB hub found
Aug 23 16:48:44 raspberrypi kernel: [    3.646451] hub 1-1:1.0: 5 ports detected
Aug 23 16:48:44 raspberrypi kernel: [    3.964444] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
Aug 23 16:48:44 raspberrypi kernel: [    4.094797] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00, bcdDevice= 2.00
Aug 23 16:48:44 raspberrypi kernel: [    4.100295] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 23 16:48:44 raspberrypi kernel: [    4.106043] smsc95xx v2.0.0
Aug 23 16:48:44 raspberrypi kernel: [    4.274714] libphy: smsc95xx-mdiobus: probed
Aug 23 16:48:44 raspberrypi kernel: [    4.278625] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:d5:83:a9
Aug 23 16:48:44 raspberrypi kernel: [    4.371381] NET: Registered protocol family 10
Aug 23 16:48:44 raspberrypi kernel: [    4.375975] Segment Routing with IPv6
Aug 23 16:48:44 raspberrypi btuart[449]: bcm43xx_init
Aug 23 16:48:44 raspberrypi btuart[449]: Set BDADDR UART: b8:27:eb:7f:29:03
Aug 23 16:48:44 raspberrypi btuart[449]: Set Controller UART speed to 921600 bit/s
Aug 23 16:48:44 raspberrypi btuart[449]: Device setup complete
Aug 23 16:48:44 raspberrypi systemd[1]: Started LSB: Start Motion detection.
Aug 23 16:48:44 raspberrypi kernel: [    4.584459] usb 1-1.3: new high-speed USB device number 4 using dwc_otg
Aug 23 16:48:44 raspberrypi kernel: [    4.715864] usb 1-1.3: New USB device found, idVendor=0781, idProduct=5591, bcdDevice= 1.00
Aug 23 16:48:44 raspberrypi kernel: [    4.721757] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 23 16:48:44 raspberrypi kernel: [    4.724964] usb 1-1.3: Product:  SanDisk 3.2Gen1
Aug 23 16:48:44 raspberrypi kernel: [    4.727935] usb 1-1.3: Manufacturer:  USB
Aug 23 16:48:44 raspberrypi kernel: [    4.730803] usb 1-1.3: SerialNumber: 01016a07c919d4884424d42e1af4c5f764dd74221ff5797c428f1753a3715ab1667400000000000000000000e431d0f1ff932d0091558107532b6bb5
Aug 23 16:48:44 raspberrypi kernel: [    4.755437] usb-storage 1-1.3:1.0: USB Mass Storage device detected
Aug 23 16:48:44 raspberrypi kernel: [    4.784540] scsi host0: usb-storage 1-1.3:1.0
Aug 23 16:48:44 raspberrypi kernel: [    4.884446] usb 1-1.5: new high-speed USB device number 5 using dwc_otg
Aug 23 16:48:44 raspberrypi kernel: [    5.043343] usb 1-1.5: New USB device found, idVendor=6366, idProduct=3370, bcdDevice= 1.00
Aug 23 16:48:44 raspberrypi kernel: [    5.049260] usb 1-1.5: New USB device strings: Mfr=2, Product=1, SerialNumber=3
Aug 23 16:48:44 raspberrypi kernel: [    5.052266] usb 1-1.5: Product: USB 2.0 Camera
Aug 23 16:48:44 raspberrypi kernel: [    5.055170] usb 1-1.5: Manufacturer: Sonix Technology Co., Ltd.
Aug 23 16:48:44 raspberrypi kernel: [    5.058021] usb 1-1.5: SerialNumber: SN0001
Aug 23 16:48:44 raspberrypi kernel: [    5.542010] random: systemd: uninitialized urandom read (16 bytes read)
Aug 23 16:48:44 raspberrypi kernel: [    5.561373] random: systemd: uninitialized urandom read (16 bytes read)
Aug 23 16:48:44 raspberrypi kernel: [    5.572586] random: systemd: uninitialized urandom read (16 bytes read)
Aug 23 16:48:44 raspberrypi kernel: [    5.835859] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
Aug 23 16:48:44 raspberrypi kernel: [    5.841453] sd 0:0:0:0: [sda] 240353280 512-byte logical blocks: (123 GB/115 GiB)
Aug 23 16:48:44 raspberrypi kernel: [    5.847284] sd 0:0:0:0: [sda] Write Protect is off
Aug 23 16:48:44 raspberrypi kernel: [    5.847304] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
Aug 23 16:48:44 raspberrypi kernel: [    5.847847] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Aug 23 16:48:44 raspberrypi kernel: [    5.938186]  sda: sda1
Aug 23 16:48:44 raspberrypi kernel: [    5.944047] sd 0:0:0:0: [sda] Attached SCSI removable disk
Aug 23 16:48:44 raspberrypi kernel: [    6.633888] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
Aug 23 16:48:44 raspberrypi kernel: [    7.172911] sd 0:0:0:0: Attached scsi generic sg0 type 0
Aug 23 16:48:44 raspberrypi kernel: [    7.705150] vc_sm_cma: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.707714] bcm2835_vc_sm_cma_probe: Videocore shared memory driver
Aug 23 16:48:44 raspberrypi kernel: [    7.707742] [vc_sm_connected_init]: start
Aug 23 16:48:44 raspberrypi kernel: [    7.718222] [vc_sm_connected_init]: installed successfully
Aug 23 16:48:44 raspberrypi kernel: [    7.740711] mc: Linux media interface: v0.10
Aug 23 16:48:44 raspberrypi kernel: [    7.824174] videodev: Linux video capture interface: v2.00
Aug 23 16:48:44 raspberrypi kernel: [    7.836717] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.875113] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.875484] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.876594] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.880935] bcm2835_audio bcm2835_audio: card created with 8 channels
Aug 23 16:48:44 raspberrypi kernel: [    7.890507] bcm2835_isp: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.895965] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.912025] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Aug 23 16:48:44 raspberrypi kernel: [    7.930923] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video13
Aug 23 16:48:44 raspberrypi kernel: [    7.952592] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video14
Aug 23 16:48:44 raspberrypi kernel: [    7.954214] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video15
Aug 23 16:48:44 raspberrypi kernel: [    7.955236] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video16
Aug 23 16:48:44 raspberrypi kernel: [    7.955285] bcm2835-isp bcm2835-isp: Register output node 0 with media controller
Aug 23 16:48:44 raspberrypi kernel: [    7.955325] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller
Aug 23 16:48:44 raspberrypi kernel: [    7.955345] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller
Aug 23 16:48:44 raspberrypi kernel: [    7.955369] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller
Aug 23 16:48:44 raspberrypi kernel: [    7.955617] bcm2835-isp bcm2835-isp: Loaded V4L2 bcm2835-isp
Aug 23 16:48:44 raspberrypi kernel: [    7.958350] bcm2835_codec: module is from the staging directory, the quality is unknown, you have been warned.
Aug 23 16:48:44 raspberrypi kernel: [    7.996043] bcm2835-codec bcm2835-codec: Device registered as /dev/video10
Aug 23 16:48:44 raspberrypi kernel: [    7.996260] bcm2835-codec bcm2835-codec: Loaded V4L2 decode
Aug 23 16:48:44 raspberrypi kernel: [    8.000815] bcm2835-codec bcm2835-codec: Device registered as /dev/video11
Aug 23 16:48:44 raspberrypi kernel: [    8.000872] bcm2835-codec bcm2835-codec: Loaded V4L2 encode
Aug 23 16:48:44 raspberrypi kernel: [    8.005222] bcm2835-codec bcm2835-codec: Device registered as /dev/video12
Aug 23 16:48:44 raspberrypi kernel: [    8.005397] bcm2835-codec bcm2835-codec: Loaded V4L2 isp
Aug 23 16:48:44 raspberrypi kernel: [    8.278397] cfg80211: Loading compiled-in X.509 certificates for regulatory database
Aug 23 16:48:44 raspberrypi kernel: [    8.419444] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (6366:3370)
Aug 23 16:48:44 raspberrypi kernel: [    8.426709] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Aug 23 16:48:44 raspberrypi kernel: [    8.453162] input: USB 2.0 Camera: USB Camera as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.0/input/input0
Aug 23 16:48:44 raspberrypi kernel: [    8.453644] usbcore: registered new interface driver uvcvideo
Aug 23 16:48:44 raspberrypi kernel: [    8.453657] USB Video Class driver (1.1.1)
Aug 23 16:48:44 raspberrypi kernel: [    8.464810] usbcore: registered new interface driver uas
Aug 23 16:48:44 raspberrypi kernel: [    8.539394] brcmfmac: F1 signature read @0x18000000=0x1541a9a6
Aug 23 16:48:44 raspberrypi kernel: [    8.550949] usb 1-1.5: 3:1: cannot get freq at ep 0x84
Aug 23 16:48:44 raspberrypi kernel: [    8.555263] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43430-sdio for chip BCM43430/1
Aug 23 16:48:44 raspberrypi kernel: [    8.555637] usbcore: registered new interface driver brcmfmac
Aug 23 16:48:44 raspberrypi kernel: [    8.689180] usbcore: registered new interface driver snd-usb-audio
Aug 23 16:48:44 raspberrypi kernel: [    8.774275] random: crng init done
Aug 23 16:48:44 raspberrypi kernel: [    8.774294] random: 7 urandom warning(s) missed due to ratelimiting
Aug 23 16:48:44 raspberrypi kernel: [    8.792056] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43430-sdio for chip BCM43430/1
Aug 23 16:48:44 raspberrypi kernel: [    8.792214] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43430-sdio for chip BCM43430/1
Aug 23 16:48:44 raspberrypi kernel: [    8.792308] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
Aug 23 16:48:44 raspberrypi kernel: [    8.793362] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43430/1 wl0: Oct 22 2019 01:59:28 version 7.45.98.94 (r723000 CY) FWID 01-3b33decd
Aug 23 16:48:44 raspberrypi kernel: [   11.601270] uart-pl011 3f201000.serial: no DMA platform data
Aug 23 16:48:44 raspberrypi kernel: [   11.831264] Bluetooth: Core ver 2.22
Aug 23 16:48:44 raspberrypi kernel: [   11.831434] NET: Registered protocol family 31
Aug 23 16:48:44 raspberrypi kernel: [   11.831448] Bluetooth: HCI device and connection manager initialized
Aug 23 16:48:44 raspberrypi kernel: [   11.832093] 8021q: 802.1Q VLAN Support v1.8
Aug 23 16:48:44 raspberrypi kernel: [   11.844693] Adding 2097148k swap on /var/swap.  Priority:-2 extents:18 across:2424828k FS
Aug 23 16:48:44 raspberrypi kernel: [   11.852524] Bluetooth: HCI socket layer initialized
Aug 23 16:48:44 raspberrypi kernel: [   11.852556] Bluetooth: L2CAP socket layer initialized
Aug 23 16:48:44 raspberrypi kernel: [   11.852613] Bluetooth: SCO socket layer initialized
Aug 23 16:48:44 raspberrypi kernel: [   11.896606] Bluetooth: HCI UART driver ver 2.3
Aug 23 16:48:44 raspberrypi kernel: [   11.896641] Bluetooth: HCI UART protocol H4 registered
Aug 23 16:48:44 raspberrypi kernel: [   11.896788] Bluetooth: HCI UART protocol Three-wire (H5) registered
Aug 23 16:48:44 raspberrypi kernel: [   11.897084] Bluetooth: HCI UART protocol Broadcom registered
Aug 23 16:48:44 raspberrypi wpa_supplicant[478]: Successfully initialized wpa_supplicant
Aug 23 16:48:44 raspberrypi systemd[1]: Started Configure Bluetooth Modems connected by UART.
Aug 23 16:48:44 raspberrypi dhcpcd[516]: wlan0: connected to Access Point `'
Aug 23 16:48:44 raspberrypi systemd[1]: Created slice system-bthelper.slice.
Aug 23 16:48:44 raspberrypi dbus-daemon[466]: [system] Successfully activated service 'org.freedesktop.systemd1'
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Raspberry Pi bluetooth helper...
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Sound Card.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Login Service.
Aug 23 16:48:44 raspberrypi systemd[1]: Started WPA supplicant.
Aug 23 16:48:44 raspberrypi systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Aug 23 16:48:44 raspberrypi bthelper[567]: Raspberry Pi BDADDR already set
Aug 23 16:48:44 raspberrypi systemd[1]: Started Raspberry Pi bluetooth helper.
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Bluetooth service...
Aug 23 16:48:44 raspberrypi dhcpcd[516]: eth0: waiting for carrier
Aug 23 16:48:44 raspberrypi kernel: [   12.247376] SMSC LAN8700 usb-001:003:01: attached PHY driver [SMSC LAN8700] (mii_bus:phy_addr=usb-001:003:01, irq=POLL)
Aug 23 16:48:44 raspberrypi kernel: [   12.247881] smsc95xx 1-1.1:1.0 eth0: hardware isn't capable of remote wakeup
Aug 23 16:48:44 raspberrypi kernel: [   12.256105] smsc95xx 1-1.1:1.0 eth0: Link is Down
Aug 23 16:48:44 raspberrypi dhcpcd[516]: wlan0: waiting for carrier
Aug 23 16:48:44 raspberrypi kernel: [   12.301623] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled
Aug 23 16:48:44 raspberrypi bluetoothd[577]: Bluetooth daemon 5.50
Aug 23 16:48:44 raspberrypi systemd[1]: Started Bluetooth service.
Aug 23 16:48:44 raspberrypi systemd[1]: Reached target Bluetooth.
Aug 23 16:48:44 raspberrypi bluetoothd[577]: Starting SDP server
Aug 23 16:48:44 raspberrypi kernel: [   12.470671] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Aug 23 16:48:44 raspberrypi kernel: [   12.470695] Bluetooth: BNEP filters: protocol multicast
Aug 23 16:48:44 raspberrypi kernel: [   12.470728] Bluetooth: BNEP socket layer initialized
Aug 23 16:48:44 raspberrypi dbus-daemon[466]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.5' (uid=0 pid=577 comm="/usr/lib/bluetooth/bluetoothd ")
Aug 23 16:48:44 raspberrypi bluetoothd[577]: Bluetooth management interface 1.18 initialized
Aug 23 16:48:44 raspberrypi bluetoothd[577]: Sap driver initialization failed.
Aug 23 16:48:44 raspberrypi bluetoothd[577]: sap-server: Operation not permitted (1)
Aug 23 16:48:44 raspberrypi systemd[1]: Starting Hostname Service...
Aug 23 16:48:44 raspberrypi bluetoothd[577]: Failed to set privacy: Rejected (0x0b)
Aug 23 16:48:44 raspberrypi dbus-daemon[466]: [system] Successfully activated service 'org.freedesktop.hostname1'
Aug 23 16:48:45 raspberrypi systemd[1]: Started Hostname Service.
Aug 23 16:48:45 raspberrypi raspi-config[493]: Checking if shift key is held down: No. Switching to ondemand scaling governor.
Aug 23 16:48:45 raspberrypi systemd[1]: Started LSB: Switch to ondemand cpu governor (unless shift key is pressed).
Aug 23 16:48:45 raspberrypi weewx[563] INFO __main__: Initializing weewx version 4.5.1
Aug 23 16:48:45 raspberrypi weewx[563] INFO __main__: Using Python 3.7.3 (default, Jan 22 2021, 20:04:44) #012[GCC 8.3.0]
Aug 23 16:48:45 raspberrypi weewx[563] INFO __main__: Platform Linux-5.10.52-v7+-armv7l-with-debian-10.10
Aug 23 16:48:45 raspberrypi weewx[563] INFO __main__: Locale is 'es_ES.UTF-8'
Aug 23 16:48:45 raspberrypi weewx[563] INFO __main__: PID file is /var/run/weewx.pid
Aug 23 16:48:45 raspberrypi weewx[583] INFO __main__: Using configuration file /etc/weewx/weewx.conf
Aug 23 16:48:45 raspberrypi weewx[583] INFO __main__: Debug is 0
Aug 23 16:48:45 raspberrypi weewx[583] INFO weewx.engine: Loading station type Interceptor (user.interceptor)
Aug 23 16:48:45 raspberrypi weewx[519]: Starting weewx weather system: weewx.
Aug 23 16:48:45 raspberrypi systemd[1]: Started LSB: weewx weather system.
Aug 23 16:48:45 raspberrypi weewx[583] INFO user.interceptor: driver version is 0.53
Aug 23 16:48:45 raspberrypi weewx[583] INFO user.interceptor: device type: observer
Aug 23 16:48:45 raspberrypi weewx[583] INFO user.interceptor: mode is listen
Aug 23 16:48:45 raspberrypi weewx[583] INFO user.interceptor: listen on :8001
Aug 23 16:48:45 raspberrypi weewx[583] INFO user.interceptor: sensor map: {'pressure': 'pressure', 'barometer': 'barometer', 'outHumidity': 'humidity_out', 'inHumidity': 'humidity_in', 'outTemp': 'temperature_out', 'inTemp': 'temperature_in', 'windSpeed': 'wind_speed', 'windGust': 'wind_gust', 'windDir': 'wind_dir', 'windGustDir': 'wind_gust_dir', 'radiation': 'solar_radiation', 'dewpoint': 'dewpoint', 'windchill': 'windchill', 'rain': 'rain', 'rainRate': 'rain_rate', 'UV': 'uv', 'txBatteryStatus': 'battery', 'extraTemp1': 'temperature_1', 'extraTemp2': 'temperature_2', 'extraTemp3': 'temperature_3', 'extraHumid1': 'humidity_1', 'extraHumid2': 'humidity_2', 'soilTemp1': 'soil_temperature_1', 'soilTemp2': 'soil_temperature_2', 'soilMoist1': 'soil_moisture_1', 'soilMoist2': 'soil_moisture_2', 'soilMoist3': 'soil_moisture_3', 'soilMoist4': 'soil_moisture_4', 'leafWet1': 'leafwetness_1', 'leafWet2': 'leafwetness_2', 'pm2_5': 'pm2_5', 'extraTemp4': 'temperature_4', 'extraTemp5': 'temperature_5', 'extraTemp6': 'temperature_6', 'extraTemp7': 'temperature_7', 'extraTemp8': 'temperature_8', 'extraHumid3': 'humidity_3', 'extraHumid4': 'humidity_4', 'extraHumid5': 'humidity_5', 'extraHumid6': 'humidity_6', 'extraHumid7': 'humidity_7', 'extraHumid8': 'humidity_8', 'soilTemp3': 'soil_temperature_3', 'soilTemp4': 'soil_temperature_4'}
Aug 23 16:48:45 raspberrypi weewx[583] INFO weewx.engine: StdConvert target unit is 0x1
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.engine: Archive will use data binding wx_binding
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.engine: Record generation will be attempted in 'hardware'
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.engine: Using archive interval of 300 seconds (specified in weewx configuration)
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: StationRegistry: Registration not requested.
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: Wunderground: Posting not enabled.
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: PWSweather: Posting not enabled.
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: CWOP: Posting not enabled.
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: WOW: Posting not enabled.
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.restx: AWEKAS: Posting not enabled.
Aug 23 16:48:46 raspberrypi weewx[583] INFO __main__: Starting up weewx version 4.5.1
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.engine: Using binding 'wx_binding' to database 'weewx.sdb'
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.manager: Starting backfill of daily summaries
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.manager: Daily summaries up to date
Aug 23 16:48:46 raspberrypi weewx[583] INFO weewx.engine: Starting main packet loop.
Aug 23 16:48:46 raspberrypi dhcpcd[516]: eth0: carrier acquired
Aug 23 16:48:46 raspberrypi kernel: [   14.315112] smsc95xx 1-1.1:1.0 eth0: Link is Up - 100Mbps/Full - flow control off
Aug 23 16:48:46 raspberrypi kernel: [   14.315146] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Aug 23 16:48:46 raspberrypi dhcpcd[516]: DUID 00:01:00:01:27:5a:4b:69:b8:27:eb:d5:83:a9
Aug 23 16:48:46 raspberrypi dhcpcd[516]: eth0: IAID eb:d5:83:a9
Aug 23 16:48:46 raspberrypi dhcpcd[516]: eth0: adding address fe80::6f6:c559:aeb0:f037
Aug 23 16:48:46 raspberrypi avahi-daemon[495]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::6f6:c559:aeb0:f037.
Aug 23 16:48:46 raspberrypi dhcpcd[516]: eth0: probing address 192.168.0.2/24
Aug 23 16:48:46 raspberrypi avahi-daemon[495]: New relevant interface eth0.IPv6 for mDNS.
Aug 23 16:48:46 raspberrypi avahi-daemon[495]: Registering new address record for fe80::6f6:c559:aeb0:f037 on eth0.*.
Aug 23 16:48:46 raspberrypi dhcpcd[516]: eth0: soliciting an IPv6 router
Aug 23 16:48:49 raspberrypi systemd[1]: systemd-rfkill.service: Succeeded.
Aug 23 16:48:49 raspberrypi bthelper[567]: Changing power off succeeded
Aug 23 16:48:49 raspberrypi bthelper[567]: Changing power on succeeded
Aug 23 16:48:51 raspberrypi dhcpcd[516]: eth0: using static address 192.168.0.2/24
Aug 23 16:48:51 raspberrypi dhcpcd[516]: eth0: adding route to 192.168.0.0/24
Aug 23 16:48:51 raspberrypi dhcpcd[516]: eth0: adding default route via 192.168.0.1
Aug 23 16:48:51 raspberrypi avahi-daemon[495]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.0.2.
Aug 23 16:48:51 raspberrypi avahi-daemon[495]: New relevant interface eth0.IPv4 for mDNS.
Aug 23 16:48:51 raspberrypi avahi-daemon[495]: Registering new address record for 192.168.0.2 on eth0.IPv4.
Aug 23 16:48:51 raspberrypi dhcpcd[516]: forked to background, child pid 637
Aug 23 16:48:51 raspberrypi systemd[1]: Started dhcpcd on all interfaces.
Aug 23 16:48:51 raspberrypi systemd[1]: Reached target Network.
Aug 23 16:48:51 raspberrypi systemd[1]: Starting dnsmasq - A lightweight DHCP and caching DNS server...
Aug 23 16:48:51 raspberrypi systemd[1]: Starting Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator...
Aug 23 16:48:51 raspberrypi systemd[1]: Starting Permit User Sessions...
Aug 23 16:48:51 raspberrypi systemd[1]: Reached target Network is Online.
Aug 23 16:48:51 raspberrypi systemd[1]: Starting LSB: web-based administration interface for Unix systems...
Aug 23 16:48:51 raspberrypi systemd[1]: Starting /etc/rc.local Compatibility...
Aug 23 16:48:51 raspberrypi systemd[1]: Starting LSB: Update dynamic domain name service entries...
Aug 23 16:48:51 raspberrypi systemd[1]: Starting Lighttpd Daemon...
Aug 23 16:48:51 raspberrypi systemd[1]: Condition check resulted in fast remote file copy program daemon being skipped.
Aug 23 16:48:51 raspberrypi systemd[1]: Starting OpenBSD Secure Shell server...
Aug 23 16:48:51 raspberrypi systemd[1]: Started Permit User Sessions.
Aug 23 16:48:51 raspberrypi systemd[1]: Started /etc/rc.local Compatibility.
Aug 23 16:48:51 raspberrypi systemd[1]: Started Getty on tty1.
Aug 23 16:48:51 raspberrypi systemd[1]: Reached target Login Prompts.
Aug 23 16:48:51 raspberrypi hostapd[639]: Configuration file: /etc/hostapd/hostapd.conf
Aug 23 16:48:52 raspberrypi dnsmasq[638]: dnsmasq: revisión de sintaxis OK.
Aug 23 16:48:52 raspberrypi hostapd[639]: wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE
Aug 23 16:48:52 raspberrypi systemd[1]: Started Advanced IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator.
Aug 23 16:48:52 raspberrypi kernel: [   19.954442] usb 1-1.2: new high-speed USB device number 6 using dwc_otg
Aug 23 16:48:52 raspberrypi dhcpcd[637]: wlan0: carrier acquired
Aug 23 16:48:52 raspberrypi kernel: [   20.026219] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Aug 23 16:48:52 raspberrypi dhcpcd[637]: wlan0: IAID eb:80:d6:fc
Aug 23 16:48:52 raspberrypi dhcpcd[637]: wlan0: adding address fe80::1dd7:174e:ddbc:cb12
Aug 23 16:48:52 raspberrypi avahi-daemon[495]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::1dd7:174e:ddbc:cb12.
Aug 23 16:48:52 raspberrypi avahi-daemon[495]: New relevant interface wlan0.IPv6 for mDNS.
Aug 23 16:48:52 raspberrypi dhcpcd[637]: wlan0: probing address 192.168.10.1/24
Aug 23 16:48:52 raspberrypi avahi-daemon[495]: Registering new address record for fe80::1dd7:174e:ddbc:cb12 on wlan0.*.
Aug 23 16:48:52 raspberrypi dnsmasq[665]: iniciado, versión 2.80 tamaño de caché 150
Aug 23 16:48:52 raspberrypi dnsmasq[665]: opciones de compilación: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify dumpfile
Aug 23 16:48:52 raspberrypi dnsmasq[665]: advertencia: interfase wlan0 no existe actualmente
Aug 23 16:48:52 raspberrypi dnsmasq-dhcp[665]: DHCP, IP range 192.168.10.3 -- 192.168.10.5, tiempo de concesión1d
Aug 23 16:48:52 raspberrypi dnsmasq[665]: leyendo /run/dnsmasq/resolv.conf
Aug 23 16:48:52 raspberrypi dnsmasq[665]: usando nombre de servidor 8.8.8.8#53
Aug 23 16:48:52 raspberrypi dnsmasq[665]: usando nombre de servidor 4.4.4.4#53
Aug 23 16:48:52 raspberrypi dnsmasq[665]: direcciónes /etc/hosts - 5 leídas
Aug 23 16:48:52 raspberrypi kernel: [   20.096572] usb 1-1.2: New USB device found, idVendor=19d2, idProduct=1421, bcdDevice=50.15
Aug 23 16:48:52 raspberrypi kernel: [   20.096590] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 23 16:48:52 raspberrypi kernel: [   20.096598] usb 1-1.2: Product: ZTE Mobile Broadband
Aug 23 16:48:52 raspberrypi kernel: [   20.096606] usb 1-1.2: Manufacturer: ZTE,Incorporated
Aug 23 16:48:52 raspberrypi kernel: [   20.096613] usb 1-1.2: SerialNumber: 1234567890ABCDEF
Aug 23 16:48:52 raspberrypi kernel: [   20.098782] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Aug 23 16:48:52 raspberrypi kernel: [   20.101226] scsi host1: usb-storage 1-1.2:1.0
Aug 23 16:48:52 raspberrypi mtp-probe: checking bus 1, device 6: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 23 16:48:52 raspberrypi mtp-probe: bus: 1, device: 6 was not an MTP device
Aug 23 16:48:52 raspberrypi systemd[1]: Started OpenBSD Secure Shell server.
Aug 23 16:48:52 raspberrypi mtp-probe: checking bus 1, device 6: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 23 16:48:52 raspberrypi mtp-probe: bus: 1, device: 6 was not an MTP device
Aug 23 16:48:52 raspberrypi dnsmasq[666]: Too few arguments.
Aug 23 16:48:52 raspberrypi systemd[1]: Started dnsmasq - A lightweight DHCP and caching DNS server.
Aug 23 16:48:52 raspberrypi systemd[1]: Reached target Host and Network Name Lookups.
Aug 23 16:48:52 raspberrypi systemd[1]: Started LSB: Update dynamic domain name service entries.
Aug 23 16:48:52 raspberrypi systemd[1]: Started Lighttpd Daemon.
Aug 23 16:48:52 raspberrypi ddclient[725]: WARNING:  file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = ''
Aug 23 16:48:52 raspberrypi ddclient[725]: WARNING:  skipping update of www.con-ip.com/actualiza_subdominio.php?subdominio=meteo&user=chve&id=98c094ff839ccac735274b545982858b from <nothing> to 192.168.0.2.
Aug 23 16:48:52 raspberrypi ddclient[725]: WARNING:   last updated <never> but last attempt on Mon Aug 23 16:44:34 2021 failed.
Aug 23 16:48:52 raspberrypi ddclient[725]: WARNING:   Wait at least 5 minutes between update attempts.
Aug 23 16:48:52 raspberrypi dhcpcd[637]: wlan0: soliciting an IPv6 router
Aug 23 16:48:53 raspberrypi kernel: [   21.116696] scsi 1:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
Aug 23 16:48:53 raspberrypi kernel: [   21.117191] scsi 1:0:0:0: Attached scsi generic sg1 type 5
Aug 23 16:48:53 raspberrypi kernel: [   21.119439] scsi 1:0:0:1: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2
Aug 23 16:48:53 raspberrypi kernel: [   21.121574] sd 1:0:0:1: Power-on or device reset occurred
Aug 23 16:48:53 raspberrypi kernel: [   21.125277] sd 1:0:0:1: Attached scsi generic sg2 type 0
Aug 23 16:48:53 raspberrypi kernel: [   21.140459] sr 1:0:0:0: Power-on or device reset occurred
Aug 23 16:48:53 raspberrypi kernel: [   21.148479] sr 1:0:0:0: [sr0] scsi-1 drive
Aug 23 16:48:53 raspberrypi kernel: [   21.148495] cdrom: Uniform CD-ROM driver Revision: 3.20
Aug 23 16:48:53 raspberrypi kernel: [   21.193585] sd 1:0:0:1: [sdb] Attached SCSI removable disk
Aug 23 16:48:53 raspberrypi kernel: [   21.205511] sr 1:0:0:0: Attached scsi CD-ROM sr0
Aug 23 16:48:57 raspberrypi dhcpcd[637]: wlan0: using static address 192.168.10.1/24
Aug 23 16:48:57 raspberrypi avahi-daemon[495]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.10.1.
Aug 23 16:48:57 raspberrypi dhcpcd[637]: wlan0: adding route to 192.168.10.0/24
Aug 23 16:48:57 raspberrypi avahi-daemon[495]: New relevant interface wlan0.IPv4 for mDNS.
Aug 23 16:48:57 raspberrypi avahi-daemon[495]: Registering new address record for 192.168.10.1 on wlan0.IPv4.
Aug 23 16:48:57 raspberrypi systemd[1]: Started LSB: web-based administration interface for Unix systems.
Aug 23 16:48:57 raspberrypi systemd[1]: Reached target Multi-User System.
Aug 23 16:48:57 raspberrypi systemd[1]: Reached target Graphical Interface.
Aug 23 16:48:57 raspberrypi systemd[1]: Starting Update UTMP about System Runlevel Changes...
Aug 23 16:48:57 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 23 16:48:57 raspberrypi systemd[1]: systemd-update-utmp-runlevel.service: Succeeded.
Aug 23 16:48:57 raspberrypi systemd[1]: Started Update UTMP about System Runlevel Changes.
Aug 23 16:48:57 raspberrypi systemd[1]: Startup finished in 4.135s (kernel) + 20.953s (userspace) = 25.088s.
Aug 23 16:48:57 raspberrypi wvdial[757]: --> WvDial: Internet dialer version 1.61
Aug 23 16:48:57 raspberrypi wvdial[757]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[757]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[757]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 1.
Aug 23 16:48:57 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 23 16:48:57 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 23 16:48:57 raspberrypi wvdial[758]: --> WvDial: Internet dialer version 1.61
Aug 23 16:48:57 raspberrypi wvdial[758]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[758]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[758]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 2.
Aug 23 16:48:57 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 23 16:48:57 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 23 16:48:57 raspberrypi wvdial[759]: --> WvDial: Internet dialer version 1.61
Aug 23 16:48:57 raspberrypi wvdial[759]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[759]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi wvdial[759]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 23 16:48:57 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 3.
Aug 23 16:48:58 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 23 16:48:58 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 23 16:48:58 raspberrypi wvdial[765]: --> WvDial: Internet dialer version 1.61
Aug 23 16:48:58 raspberrypi wvdial[765]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi wvdial[765]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi wvdial[765]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 4.
Aug 23 16:48:58 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 23 16:48:58 raspberrypi systemd[1]: Started Wvdial GSM Modem.
Aug 23 16:48:58 raspberrypi wvdial[773]: --> WvDial: Internet dialer version 1.61
Aug 23 16:48:58 raspberrypi wvdial[773]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi wvdial[773]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi wvdial[773]: --> Cannot open /dev/ttyUSB1: No such file or directory
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Main process exited, code=exited, status=1/FAILURE
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:58 raspberrypi kernel: [   26.308124] usb 1-1.2: USB disconnect, device number 6
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Service RestartSec=100ms expired, scheduling restart.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Scheduled restart job, restart counter is at 5.
Aug 23 16:48:58 raspberrypi systemd[1]: Stopped Wvdial GSM Modem.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Start request repeated too quickly.
Aug 23 16:48:58 raspberrypi systemd[1]: wvdial.service: Failed with result 'exit-code'.
Aug 23 16:48:58 raspberrypi systemd[1]: Failed to start Wvdial GSM Modem.
Aug 23 16:48:59 raspberrypi kernel: [   26.884452] usb 1-1.2: new high-speed USB device number 7 using dwc_otg
Aug 23 16:48:59 raspberrypi kernel: [   27.026576] usb 1-1.2: New USB device found, idVendor=19d2, idProduct=1282, bcdDevice=50.15
Aug 23 16:48:59 raspberrypi kernel: [   27.026592] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 23 16:48:59 raspberrypi kernel: [   27.026600] usb 1-1.2: Product: ZTE Mobile Broadband
Aug 23 16:48:59 raspberrypi kernel: [   27.026608] usb 1-1.2: Manufacturer: ZTE,Incorporated
Aug 23 16:48:59 raspberrypi kernel: [   27.026615] usb 1-1.2: SerialNumber: 1234567890ABCDEF
Aug 23 16:48:59 raspberrypi kernel: [   27.030849] usb-storage 1-1.2:1.4: USB Mass Storage device detected
Aug 23 16:48:59 raspberrypi kernel: [   27.031285] scsi host1: usb-storage 1-1.2:1.4
Aug 23 16:48:59 raspberrypi mtp-probe: checking bus 1, device 7: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 23 16:48:59 raspberrypi mtp-probe: bus: 1, device: 7 was not an MTP device
Aug 23 16:48:59 raspberrypi kernel: [   27.097403] usbcore: registered new interface driver usbserial_generic
Aug 23 16:48:59 raspberrypi kernel: [   27.097476] usbserial: USB Serial support registered for generic
Aug 23 16:48:59 raspberrypi kernel: [   27.114230] usbcore: registered new interface driver option
Aug 23 16:48:59 raspberrypi kernel: [   27.114287] usbserial: USB Serial support registered for GSM modem (1-port)
Aug 23 16:48:59 raspberrypi kernel: [   27.116253] option 1-1.2:1.0: GSM modem (1-port) converter detected
Aug 23 16:48:59 raspberrypi kernel: [   27.116598] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB0
Aug 23 16:48:59 raspberrypi kernel: [   27.116909] option 1-1.2:1.1: GSM modem (1-port) converter detected
Aug 23 16:48:59 raspberrypi kernel: [   27.117171] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB1
Aug 23 16:48:59 raspberrypi kernel: [   27.117457] option 1-1.2:1.2: GSM modem (1-port) converter detected
Aug 23 16:48:59 raspberrypi kernel: [   27.117707] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB2
Aug 23 16:48:59 raspberrypi kernel: [   27.118006] option 1-1.2:1.3: GSM modem (1-port) converter detected
Aug 23 16:48:59 raspberrypi kernel: [   27.118829] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB3
Aug 23 16:48:59 raspberrypi mtp-probe: checking bus 1, device 7: "/sys/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.2"
Aug 23 16:48:59 raspberrypi mtp-probe: bus: 1, device: 7 was not an MTP device
Aug 23 16:49:00 raspberrypi dhcpcd[637]: eth0: no IPv6 Routers available
Aug 23 16:49:00 raspberrypi kernel: [   28.076779] scsi 1:0:0:0: CD-ROM            ZTE      USB SCSI CD-ROM  2.31 PQ: 0 ANSI: 2
Aug 23 16:49:00 raspberrypi kernel: [   28.085053] sr 1:0:0:0: [sr0] scsi-1 drive
Aug 23 16:49:00 raspberrypi kernel: [   28.156517] sr 1:0:0:0: Attached scsi CD-ROM sr0
Aug 23 16:49:00 raspberrypi kernel: [   28.157570] sr 1:0:0:0: Attached scsi generic sg1 type 5
Aug 23 16:49:00 raspberrypi kernel: [   28.205955] scsi 1:0:0:1: Direct-Access     ZTE      MMC Storage      2.31 PQ: 0 ANSI: 2
Aug 23 16:49:00 raspberrypi kernel: [   28.207451] sd 1:0:0:1: Attached scsi generic sg2 type 0
Aug 23 16:49:00 raspberrypi kernel: [   28.209819] sd 1:0:0:1: Power-on or device reset occurred
Aug 23 16:49:00 raspberrypi kernel: [   28.257985] sd 1:0:0:1: [sdb] Attached SCSI removable disk
que cosas ehh!!!...
Egrueda, ¿y si hacemos que ejecute el script en vez del demonio en el arranque?... Seria otra alternativa, ¿no?...
Avatar de Usuario
chve
Pi Alpha
Pi Alpha
Mensajes: 28
Registrado: 17 Ago 2021, 00:13
Agradecido: 2 veces
Agradecimiento recibido: 0

Tampoco arranca con el script desde systemd. Deja el modem activo pro, no marca, con lo cual no obtiene conexión.
Avatar de Usuario
chve
Pi Alpha
Pi Alpha
Mensajes: 28
Registrado: 17 Ago 2021, 00:13
Agradecido: 2 veces
Agradecimiento recibido: 0

Finalmente tengo la raspy funcionando de manera aislada. NO he conseguido que conecte el modem en el arranque con systemd, pro este script en el arranque no ha fallado hasta el momento.

Código: Seleccionar todo

#! /bin/bash
(
   while : ; do
       wvdial
       sleep 10
   done
) &
En las pruebas algunas veces, por el motivo que fuere, el modem perdía la conexión. Buscando encontré este otro script para la reconexión y hasta el momento esta dando buen resultado.

Código: Seleccionar todo

#!/bin/bash     
i=1
while [ $i -le 10 ];
        wvdial 
        sleep 10
      $i
let $[ i+=1 ] 
done
También tuve problemas con Motion en el arranque, pro era por permisos de su log. Ahora funcionando sin problemas en segundo plano desde el arranque.
Muy agradecido egrueda por tu tiempo y ayuda. Iré posteando si me surgen dudas o problemas. :suerte
Responder