Por que meu ubuntu está tentando buscar pacotes aarch64 no sistema x86_64?

0

Não consigo atualizar meus repositórios do Ubuntu. O comando apt-get update dá os seguintes erros

W: Failed to fetch http://us.archive.ubuntu.com/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://ppa.launchpad.net/hugin/hugin-builds/ubuntu/dists/trusty/InRelease Unable to find expected entry 'main/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W: Failed to fetch https://deb.opera.com/opera-stable/dists/stable/InRelease  Unable to find expected entry 'non-free/binary-aarch64/Packages' in Release file (Wrong sources.list entry or malformed file)
W: Failed to fetch https://packagecloud.io/slacktechnologies/slack/debian/dists/jessie/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://ppa.launchpad.net/rabbitvcs/ppa/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://us.archive.ubuntu.com/ubuntu/dists/trusty/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

Este é o meu arquivo sources.list

###### Ubuntu Main Repos
deb http://us.archive.ubuntu.com/ubuntu/ trusty main universe multiverse  
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main universe multiverse 

###### Ubuntu Update Repos
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main universe multiverse

EDITAR:

Esta é a saída de dpkg --print-foreign-architectures

i386
aarch64
armhf
    
por Ahmed_Faraz 21.11.2017 / 08:30

1 resposta

1

"aarch64" é listado como uma arquitetura estrangeira. Este não é um nome de arquitetura no Ubuntu. Abra um terminal e execute:

sudo apt-get remove --purge 'dpkg --get-selections | grep aarch64 | awk '{print $1}''
sudo dpkg --remove-architecture aarch64.
    
por ravery 21.11.2017 / 08:51