Results 1 to 7 of 7
I recently posted this on the YDL Forums but theres no activity going on there so I decided to see if I can get help here. I have Yellow Dog ...
- 06-30-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Help with Proxy
I recently posted this on the YDL Forums but theres no activity going on there so I decided to see if I can get help here. I have Yellow Dog Linux and here is what I posted at the YDL Forums:
I'm somewhat new to linux here but here is my problem. I can only connect to dialup in my area and i need to share my internet with my desktop server and my ps3 running yellow dog linux. So I tried everything and came up with a solution. I setup a proxy on my laptop to share the dialup connection to my desktop so I can use certain programs to run that require internet. But I cant figure how to make YDL on my PS3 connect to the proxy.
The connection is perfect as I can setup the proxy in firefox on YDL but I need the entire OS to connect to the proxy.
Heres a model to show my setup:
hxxp://xxx.shareapic.com/pfiles/41647/Help.jpg - without hxxp:// and change xxx to www
I desperately need help with this so if you don't understand my setup please see the image above.
- 06-30-2009 #2Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
You can set the proxy in an environmental variable. If it works you can then set it permanently in /etc/profile so that it's loaded each logon.
http://www.linuxforums.org/forum/arc...xy-client.htmlCode:export http_proxy=127.0.0.1
- 06-30-2009 #3Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Can you help me with this. I dont know what an environmental variable is? My proxy is setup on my windows laptop and called anologx. I'm new in linux and i have no clue what a environmental variable is or how to make one.
- 06-30-2009 #4Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
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 runIn Linux or other Unix-like systems runCode:echo %path%
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/Code:echo $PATH
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.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.Code:export http_proxy=127.0.0.1:8080
If you get that far post back and let us know how you got on.
- 06-30-2009 #5Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Still nothing. Thanks for the help though.
- 06-30-2009 #6Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Is there anything else I can do to set this up? I can still get on my other windows computer normally. I use a program called proxifier which forces all applications to use the proxy. Is there any applications that can do this? If not than is anyone able to help with the environmental variable to get it working?
- 06-30-2009 #7Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
I know it can be easily done, but I'm sorry I don't really have the experience myself in this area. I hope one of the other forum members can jump in to help


Reply With Quote