Instalé Tor de esta manera:
sudo add-apt-repository ppa:webupd8team/tor-browser
sudo apt-get update
sudo apt-get install tor-browser
Ejecuté hoy en Terminal this: tor y recibí este mensaje de error:
Oct 04 19:24:04.461 [notice] Tor v0.2.7.6 (git-605ae665009853bd) running on Linux with Libevent 2.0.21-stable, OpenSSL 1.0.2g and Zlib 1.2.8.
Oct 04 19:24:04.461 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://www.torproject.org/download/download#warning
Oct 04 19:24:04.517 [notice] Read configuration file "/etc/tor/torrc".
Oct 04 19:24:04.574 [notice] Opening Socks listener on 127.0.0.1:9050
Oct 04 19:24:04.574 [warn] Could not bind to 127.0.0.1:9050: Address already in use. Is Tor already running?
Oct 04 19:24:04.575 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Oct 04 19:24:04.575 [err] Reading config failed--see warnings above.
¿Cómo arreglar esto?
netstat
le dirá qué está escuchando en ese puerto. Abra una terminal (presione Ctrl+ Alt+ T) y ejecute:Le dirá qué programa está usando ese puerto. Por ejemplo, en mi sistema, muestra:
Al final, dice que el programa que escucha en ese puerto es
tor
.fuente
tor-browser
y un segundo paquete Tor. Pruebesudo service tor stop
y vea si el navegador Tor funciona después de eso.Respuesta de @David Foerster:
killall tor
no funcionó para mí.Obtuve el resultado
tor: no process found.
Nueva solución:
sudo killall tor
fuente
reinicie su dispositivo y vuelva a ejecutarlo. El puerto será real.
fuente