당신은 아마 우분투에서 제공하는 정말 오래된 버전을 가지고 있고 그것은 같은 오류를 반환 것 : 내가 시도를하려는 솔루션은 단지 소스에서 최신 버전을 구축하고 그것을 사용하는 것입니다
libtorsocks(5389): WARNING: The symbol res_query() was not found in any shared library with the reported error: Not Found! Also, we failed to find the symbol __res_query() with the reported error: Not Found
.
sudo apt-get remove torsocks
git clone https://git.torproject.org/torsocks.git
cd torsocks
./autogen.sh
./configure
make
sudo make install
그러나 이는 links
으로는 도움이되지 않았습니다. 그것은 여전히 이름을 해결하지 못하고 Proxychains를 사용하여 작동시킬 수 없습니다 (Tor에서 DNS를 해결하지만 어떻게 든 링크로 돌아 가지 않습니다).
해결책은 links
의 SOCKS 프록시 옵션 (DNS가 누출되지 않았 음)을 사용하는 것일 수 있습니다.
links -socks-proxy 127.0.0.1:9050 https://example.com
링크의 SOCKS 프록시 사용에 대한 마지막 팁을 보내 주셔서 감사합니다. – user249705
나는 '링크'대신 'lynx'를 사용했다. 나는 후자를 선호하지만 적어도 "torsocks lynx"와 함께 tor를 사용하는 기능적인 터미널 브라우저가 있습니다. 감사합니다! – user249705