Falha ao baixar informações do repositório (entrada Wrong sources.list ou arquivo malformado)

3

Eu recebo o seguinte log de erro ao tentar atualizar a lista de pacotes:

Failed to download repository information
Check your Internet connection.
W:Failed to fetch http://ftp.wcss.pl/ubuntu/dists/trusty-updates/InRelease  Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W:Failed to fetch http://ftp.wcss.pl/ubuntu/dists/trusty-backports/InRelease  Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W:Failed to fetch http://ftp.wcss.pl/ubuntu/dists/trusty-security/InRelease  Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W:Failed to fetch http://ftp.wcss.pl/ubuntu/dists/trusty/Release  Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W:Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/raring/Release  Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
E:Some index files failed to download. They have been ignored, or old ones used instead.

Tentei apt-get clean e autoclean , alterando servidores , mesmo removendo arquitetura (mas o dpkg disse que eu não posso porque está em uso pelo banco de dados). Também tentei remover a linha contendo as entradas problemáticas, mas o meu sources.list não as contém. Quando eu faço cat /etc/apt/sources.list /etc/apt/sources.list.d/* , é isso que eu recebo:

# deb cdrom:[Ubuntu 14.04.1 LTS _Trusty Tahr_ - Release amd64 (20140722.2)]/ trusty main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://ftp.wcss.pl/ubuntu/ trusty main restricted
deb-src http://ftp.wcss.pl/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ftp.wcss.pl/ubuntu/ trusty-updates main restricted
deb-src http://ftp.wcss.pl/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://ftp.wcss.pl/ubuntu/ trusty universe
deb-src http://ftp.wcss.pl/ubuntu/ trusty universe
deb http://ftp.wcss.pl/ubuntu/ trusty-updates universe
deb-src http://ftp.wcss.pl/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://ftp.wcss.pl/ubuntu/ trusty multiverse
deb-src http://ftp.wcss.pl/ubuntu/ trusty multiverse
deb http://ftp.wcss.pl/ubuntu/ trusty-updates multiverse
deb-src http://ftp.wcss.pl/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://ftp.wcss.pl/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://ftp.wcss.pl/ubuntu/ trusty-backports main restricted universe multiverse

deb http://ftp.wcss.pl/ubuntu/ trusty-security main restricted
deb-src http://ftp.wcss.pl/ubuntu/ trusty-security main restricted
deb http://ftp.wcss.pl/ubuntu/ trusty-security universe
deb-src http://ftp.wcss.pl/ubuntu/ trusty-security universe
deb http://ftp.wcss.pl/ubuntu/ trusty-security multiverse
deb-src http://ftp.wcss.pl/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
deb file:///var/cuda-repo-7-0-local /
deb file:///var/cuda-repo-7-0-local /
deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64 /
deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64 /
deb [arch=i386,amd64] http://linux.dropbox.com/ubuntu trusty main
deb [arch=i386,amd64] http://linux.dropbox.com/ubuntu trusty main
deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse
# deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse
deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64 /
deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64 /

Isso também é diferente da duplicação sugerida - meu log de erros não contém um índice da linha corrompida. Na verdade, meu sources.list nem contém entradas semelhantes às mencionadas na mensagem.

O que posso fazer com isso?

    
por Przemek D 26.09.2016 / 09:55

1 resposta

4

De acordo com este erro:

 Unable to find expected entry 'main/binary-aarch64/Packages'

Você adicionou aarch64 architecture, mas os repositórios não têm pacotes para essa arquitetura.

Verifique:

dpkg --print-architecture

e

dpkg --print-foreign-architectures

Você deve ver aarch64 em arquiteturas estrangeiras. Remova-o:

dpkg --remove-architecture aarch64

Se você receber este erro:

error: cannot remove architecture 'aarch64' currently in use by the database

Você terá que remover qualquer pacote aarch64 que você tenha:

dpkg -l | grep aarch64

Remova tudo o que encontrar (com sudo apt remove )

E tente atualizar novamente.

Como alternativa, se você precisar desses pacotes , mantenha a arquitetura estrangeira e configure cada linha da sua lista de fontes que gera erros para pesquisar somente os pacotes das arquiteturas desejadas, adicionando [ arch=amd64 ] ou [ arch=i386,amd64 ] assim, por exemplo:

deb [ arch=amd64 ] http://archive.ubuntu.com/ubuntu/ trusty-updates main
    
por Zanna 26.09.2016 / 10:27

Tags