well am not sure about your method of enabling proxy for apt. we use proxy here to and what i do is add my proxy settings to in my home directory and in /etc i add the following to the bottom of both file so there look like this
Code:
. /etc/bash_completion
fi
# Networkproxy
export http_proxy=http://proxy.aust-abuja.org:3128/
this works fine with every command i run that needs internet connecting would use my proxy. e.g wget,youtude-dl,apt-get, everything would be directed to use my proxy. to connect to the internet. and when am in a another network that dont need proxy to connect to the internet. all i do is add a comment to the proxy settings so that it becomes
Code:
. /etc/bash_completion
fi
# Networkproxy
#export http_proxy=http://proxy.aust-abuja.org:3128/
i do this to both /etc/bash.bashrc and $HOME/.bashrc
so just
Code:
sudo gedit /etc/bash.bashrc
and in your case it add
Code:
export http_proxy=http://192.168.0.6:8000/
to the end of the file.
then do the same for
.bashrc in your home dir
AND ADD
Code:
export http_proxy=http://192.168.0.6:8000/
to the end of the file.
so i would advise you undo the the proxy settings you have for apt.conf..
edit .. funny before posting this i just decided to check my /etc/apt/apt.conf file and i saw that my proxy settings had been automatically updated to it ..
cquire::http:
roxy "http://proxy.aust-abuja.org:3128/";
Acquire::ftp:
roxy "ftp://proxy.aust-abuja.org:3128/";
Acquire::https:
roxy "https://proxy.aust-abuja.org:3128/";
am sure it was because i set synaptic to download thru my proxy.
you can go to synaptic > settings > preference > network and tell it to download directly from the internet. let me know if it works.
Bookmarks