Eu instalei recentemente a versão do Ubuntu 14.0.1 na minha máquina. Eu uso um servidor proxy para acessar a Internet e para isso eu tenho que fornecer o endereço IP necessário do servidor proxy, o número da porta e minhas credenciais de autenticação. Aqui está como meu /etc/apt/apt.conf se parece com
Acquire::http::proxy "http://username:[email protected]:3128/";
Acquire::https::proxy "https://username:[email protected]:3128/";
Acquire::ftp::proxy "ftp://username:[email protected]:3128/";
Acquire::socks::proxy "socks://username:[email protected]:3128/"
Aqui mtan_201412 é username e zq8ap612g5 é a senha.
Depois de instalar o sistema operacional Ubuntu, fiz o arquivo apt.conf acima e executei o comando
sudo apt-get update
Eu recebi uma saída semelhante à
enter code here
Ign http://archive.ubuntu.com trusty-backports/multiverse Translation-en_IN
Ign http://archive.ubuntu.com trusty-backports/multiverse Translation-en
Ign http://archive.ubuntu.com trusty-backports/restricted Translation-en_IN
Ign http://archive.ubuntu.com trusty-backports/restricted Translation-en
Ign http://archive.ubuntu.com trusty-backports/universe Translation-en_IN
Ign http://archive.ubuntu.com trusty-backports/universe Translation-en
Err http://archive.ubuntu.com trusty/universe
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/main
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/restricted
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/multiverse
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/main i386
Packages 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/restricted i386
Packages 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/universe i386
Packages 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty/multiverse i386
Packages 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty-security/universe
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty-security/main
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty-security/restricted
Sources 407 Proxy Authentication Required
Err http://archive.ubuntu.com trusty-security/multiverse Sources
Como é evidente, existem alguns alvos que recebem um sucesso enquanto para outros, A mensagem de falha na autenticação do proxy é exibida. Então o arquivo apt.conf acima é automaticamente alterado para
Acquire::http::proxy "http://192.168.1.107:3128/";
Acquire::https::proxy "https://192.168.1.107:3128/";
Acquire::ftp::proxy "ftp://192.168.1.107:3128/";
Acquire::socks::proxy "socks://192.168.1.107:3128/";
Isso acontece repetidamente. É realmente frustrante continuar editando o arquivo apt.conf para incluir credenciais. Por que isso está acontecendo?
Antes disso, eu estava usando o mesmo sistema operacional. Eu usei as configurações de proxy de rede na guia Configurações do sistema - & nbsp; Rede - > Proxy de rede e coloquei as credenciais no arquivo apt.conf e tudo (atualização, atualização e instalação de software pelo centro de software) costumava ocorrer sem algum problema. Agora posso atualizar o sistema usando
sudo apt-get upgrade
Mas não consigo usar a edição e a central de software do Software Updater GUI para instalar qualquer software.
Por que estou enfrentando esse problema agora?
Tags apt authentication http-proxy