lunes, 3 de junio de 2019

Velocidad de la conexion a Internet

He recibido un correo avisando de que le proveedor de Internet (UnityMedia) va a realizar trabajos supuestamente para mejoras en la red.

El día 3 de Junio, las pruebas de velocidad obtienen el siguiente resultado:

El resultado desde la linea de comandos no devuelve un resultado significativamente mejor, se repite la medida cinco veces:
$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (**.***.***.***)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by 23media GmbH (********) [2.33 km]: 30.901 ms
Testing download speed................................................................................
Download: 17.86 Mbit/s
Testing upload speed....................................................................................................
Upload: 2.60 Mbit/s

$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (**.***.***.***)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by 23media GmbH (********) [2.33 km]: 31.848 ms
Testing download speed................................................................................
Download: 14.88 Mbit/s
Testing upload speed....................................................................................................
Upload: 2.45 Mbit/s

$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (**.***.***.***)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Vodafone Kabel Deutschland (********) [2.33 km]: 32.165 ms
Testing download speed................................................................................
Download: 22.19 Mbit/s
Testing upload speed....................................................................................................
Upload: 5.91 Mbit/s

$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (**.***.***.***)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by MK Netzdienste (********) [2.33 km]: 31.193 ms
Testing download speed................................................................................
Download: 24.35 Mbit/s
Testing upload speed....................................................................................................
Upload: 2.49 Mbit/s

$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (62.143.152.133)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Vodafone Kabel Deutschland (Frankfurt) [2.33 km]: 34.471 ms
Testing download speed................................................................................
Download: 19.58 Mbit/s
Testing upload speed....................................................................................................
Upload: 5.99 Mbit/s


Actualizado a fecha 31 Jul 2019:
No parece que hayan mejorado respecto a la velocidad:
$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (62.143.152.133)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Vodafone DE (Frankfurt) [1.52 km]: 35.338 ms
Testing download speed................................................................................
Download: 14.53 Mbit/s
Testing upload speed......................................................................................................
Upload: 5.92 Mbit/s

$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Unitymedia (62.143.152.133)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by fdcservers.net (Frankfurt) [1.52 km]: 33.2 ms
Testing download speed................................................................................
Download: 17.24 Mbit/s
Testing upload speed......................................................................................................
Upload: 6.29 Mbit/s

domingo, 2 de junio de 2019

Cambiando la ubicación del archivo journal

He cambiado la ubicación de journal porque al intentar acceder al log de algún arranque anterior al actual aparece el siguiente error:
journalctl -b -1
Specifying boot ID or boot offset has no effect, no persistent journal was found.

mkdir -p /var/log/journal
systemd-tmpfiles --create --prefix /var/log/journal
[/usr/lib/tmpfiles.d/mdadm.conf:1] Line references path below legacy directory /var/run/, updating /var/run/mdadm → /run/mdadm; please update the tmpfiles.d/ drop-in file accordingly.
[/usr/lib/tmpfiles.d/pptp.conf:1] Line references path below legacy directory /var/run/, updating /var/run/pptp → /run/pptp; please update the tmpfiles.d/ drop-in file accordingly.
systemctl restart systemd-journald

Ahora el journal se crean en una nueva ubicación:
ll /var/log/journal/
total 0
drwxr-sr-x+ 2 root systemd-journal 28 Jun  2 19:09 9a85483ca35740a8a3e7537687fe062a

Después de reiniciar, al listar los arranques almacenados aparecen mas de uno:
journalctl --list-boots
-1 ee4accf1fe6c408e94ad96fe8988080a Sun 2019-06-02 18:57:40 CEST—Sun 2019-06-02 19:19:24 CEST
 0 976f76e67e6244ab83eeb18dbd77ed62 Sun 2019-06-02 19:30:27 CEST—Sun 2019-06-02 19:36:14 CEST

Esta solución se aplica según lo indicado aquí.