You are not logged in.
For example, say I want to open 3 instances of the same program, but I want two of those to be running under the tor network and the other one from my own network. Is this possible to do? Because I was able to to something similar on windows 7 before. How would I go about doing this on my arch system if it is at all possible?
Thanks in advance.
Last edited by tm (2014-02-15 19:04:32)
Offline
What program? Tor is just a proxy. You need to tell your programs to use the proxy. In your case, tell two of them to do that and keep the other defaulted.
CPU-optimized Linux-ck packages @ Repo-ck • AUR packages • Zsh and other configs
Offline
If it's a command line based program, you can run it as:
$ usewithtor <program>
If you are trying to do so with a browser, then simply point it at the tor proxy as graysky mentioned.
Offline
As long as the program allows you to open multiple instances. Chromium won't.
Online
Actually, some browsers work just fine if you point them through usewithtor. For example:
$ usewithtor surf
$ usewithtor vimprobable
Both work fine. I'm not sure how bigger browsers like Firefox and Chromium would handle that though.
All the best,
-HG
Offline
Hey thanks for the help guys you have answered my question half way. I'm not trying to do it with a normal installed program but a java application through a .jar file, is this still possible as when I try to do
usewithtor
and point it to the jar file it gives me a PATH error.
Thanks in advance guys.
Offline
Please post the full command and actual path of the JAR file.
Offline
[tm@arch ~]$ usewithtor Java.jar
ERROR: Java.jar cannot be found in PATH.
full path of jar file = /home/tm/Java.jar
I also get the same error if I do
usewithtor /home/tm/Java.jar
Last edited by tm (2014-02-15 18:45:52)
Offline
You have to run it as
$ usewithtor java -jar /path/to/Java.jar
Last edited by x33a (2014-02-15 18:49:16)
Offline
You have to run it as
$ usewithtor java -jar /path/to/Java.jar
Thank you very much my friend ! it works!
Offline