Todos los que tenemos una raspberry con raspbian, al intentar actualizar el software a través de apt-get update nos salta el siguiente error
W: Failed to fetch http://repository.wolfram.com/raspbian/dists/stable/Release.gpg Could not connect to repository.wolfram.com:80 (140.177.204.60). - connect (113: No route to host) W: Failed to fetch http://repository.wolfram.com/raspbian/dists/stable/non-free/binary-armhf/Packages Unable to connect to repository.wolfram.com:http: W: Failed to fetch http://repository.wolfram.com/raspbian/dists/stable/non-free/i18n/Translation-en_GB Unable to connect to repository.wolfram.com:http: W: Failed to fetch http://repository.wolfram.com/raspbian/dists/stable/non-free/i18n/Translation-en Unable to connect to repository.wolfram.com:http: E: Some index files failed to download. They have been ignored, or old ones used instead.
Este error es debido a que ya no esta el repositorio de wolfram online, lo que produce que al intentar actualizar sus repositorios nos salte dicho error.
Un workarround hasta que solucionen sus problemas es mover el archivo que hace referencia a dicho repositorio a otro sitio.
Esto lo podemos hacer con la siguiente orden (que también ejecuta otra vez el update para ver que funciona)
cd /etc/apt/sources.list.d/ && mv -v wolfram.list wolfram.disabled && apt-get update
Con esto ya vemos que solventamos el error.
Cuando vuelvan a levantar el servidor de wolfram simplemente debemos volver a mover el archivo a su anterior ubicación y ejecutar otra vez el update.
Agur!