我用这种方式安装了Tor:
sudo add-apt-repository ppa:webupd8team/tor-browser
sudo apt-get update
sudo apt-get install tor-browser我今天在终端运行:$ tor和我收到了一条错误消息:
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.怎么解决这个问题?
发布于 2017-08-20 09:01:48
对我有用的是:
killall tor发布于 2018-12-26 06:35:13
@David的回答:killall tor不适合我。
我得到了结果tor: no process found.
sudo killall tor发布于 2020-05-12 14:41:10
对于20.04安装和运行tor-browser的下一种方式:
sudo apt install torbrowser-launcher
torbrowser-launcher如果要使用tor命令,请使用systemctl处理其服务:
sudo systemctl start tor
sudo systemctl stop tor
systemctl status tor停止tor服务后,可以使用tor命令运行它。
您也可以使用它作为代理,但它是不容易。
https://askubuntu.com/questions/833021
复制相似问题