No problem, but I will say up front that I found this solution here on the forum and have only briefly played with proxies in the past
Environmental variables are set on Windows too...you can check them either on the command line or in the Advanced tab of System Properties. Generally speaking it is a placeholder for important information that can be accessed from any application or by the operating system itself. Your path variable says where to look for executables when a command is run. In Windows, open cmd.exe and run In Linux or other Unix-like systems run If you were to type ping.exe in Windows the operating system would look first in C:\Windows\system32 and you should see that location in the path variable. The equivalent in Linux would likely be /bin/ or /usr/bin/
Now that you have the hang of variables we'll set your proxy variable. If you're using some kind of authentication or require passwords this may be a little bit more complicated. Open a terminal such as konsole or gnome-terminal and run the following command, replacing the IP address with the IP of your proxy server and 8080 with the port number you are using if it is different. Code: export http_proxy=127.0.0.1:8080
Once that's done try to connect to the internet. If you've configured Firefox to use one you can temporarily remove that setting and try from there.
If you get that far post back and let us know how you got on. |