Eu estava instalando o Ubuntu 14.04.1 LTS x64 em uma caixa virtual rodando no Windows 8 x64. Ao executar o instalador, não entrei nada no diálogo pedindo alguma configuração de proxy necessária. A VM é anexada à web usando a rede de ponte por padrão.
Esta VM é usada para testar alguns desenvolvimentos internos de um script de instalação. Assim, tirei uma foto instantânea após o término do instalador básico. Eu posso inicializar corretamente essa VM e sempre reverter para esse instantâneo para tentar novamente nosso próprio instalador.
Esses testes estão sempre começando assim:
git svn
(sempre bem-sucedido) Esse instalador é usado para invocar
apt-get update
no primeiro lançamento e novamente uma vez por dia em invocações repetidas. Além disso, está invocando
apt-get upgrade
uma vez por dia e usa
apt-get install <somepackage>
para instalar dependências necessárias, mas ausentes.
No entanto, mesmo em uma VM revertida recentemente para essa captura instantânea, a invocação inicial do instalador de apt-get update
ocasionalmente falha devido a não localizar alguns repositórios ou ter somas de hash incompatíveis nos repositórios selecionados.
Devido a esta questão, atualmente não podemos aconselhar nossos clientes a atualizar as instalações existentes para o Ubuntu 14.04 LTS, embora inclua várias melhorias altamente benéficas (por exemplo, no suporte ao LXC).
Uma solução atualmente comprovada é
Tenho certeza de que isso não está relacionado à conectividade da web de nosso escritório, pois está ocorrendo em lugares diferentes, em horários e dias diferentes, ao mesmo tempo em que transmite a partir da Web, usando áudio / vídeo, etc. / p>
Aqui está meu /etc/apt/sources.list
:
#
# deb cdrom:[Ubuntu-Server 14.04.1 LTS _Trusty Tahr_ - Release amd64 (20140722.3)]/ trusty main restricted
#deb cdrom:[Ubuntu-Server 14.04.1 LTS _Trusty Tahr_ - Release amd64 (20140722.3)]/ trusty main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://de.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://de.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://de.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty universe
deb http://de.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://de.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://de.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://de.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner
## Uncomment the following two lines to add software from Ubuntu's
## 'extras' repository.
## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
# deb http://extras.ubuntu.com/ubuntu trusty main
# deb-src http://extras.ubuntu.com/ubuntu trusty main
Não há arquivos em /etc/apt/sources.list.d/
...