apt-get update não funciona + ubuntu Vs de 32 bits de 64 bits

2

Sou novato na plataforma linux.Por favor, não marque esta questão como duplicada antes de a ler completamente!

Meu sistema está sendo executado no processador intel i5 e o SO que eu instalei recentemente é 64-bit Ubuntu 13.10 . Eu tive que instalar um conjunto de bibliotecas para a minha ferramenta de desenvolvedor android ( ADT ) para funcionar corretamente. Tudo começou com o linuxizing do meu sistema e ambiente de desenvolvimento!

Este é um dos links I processado para este fim.

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install ia32-libs 

Eu também usei as dicas para acelerar o Ubuntu 13.10

Mas quando eu faço um sudo apt-get update , ele mostra as seguintes mensagens de aviso várias vezes várias vezes.

W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/main/binary-amd64/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/restricted/binary-amd64/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/main/binary-i386/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/restricted/binary-i386/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/main/binary-i586/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/restricted/binary-i586/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/main/binary-i686/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch cdrom://Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)/dists/saucy/restricted/binary-i686/Packages  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs    
W: Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://archive.canonical.com/ubuntu/dists/saucy/Release  Unable to find expected entry 'partner/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://ppa.launchpad.net/appgrid/stable/ubuntu/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://ppa.launchpad.net/apt-fast/stable/ubuntu/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://ppa.launchpad.net/linrunner/tlp/ubuntu/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch http://ppa.launchpad.net/webupd8team/unstable/ubuntu/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch ftp://ftp.iitb.ac.in/distributions/ubuntu/archives/dists/saucy/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch ftp://ftp.iitb.ac.in/distributions/ubuntu/archives/dists/saucy-updates/Release  Unable to find expected entry 'main/binary-i586/Packages' in Release file (Wrong sources.list entry or malformed file)    
W: Failed to fetch ftp://ftp.iitb.ac.in/distributions/ubuntu/archives/dists/saucy-security/Release  Unable to find expected entry 'main/binary-i586/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.

Eu tentei resolver os problemas usando várias respostas neste fórum que está pedindo para editar o arquivo sources.list . Mas eu não tenho esse conteúdo ( binary-i686 or binary-i586 ) no meu arquivo sources.list.

Alguém pode me ajudar a resolver esse problema? Por favor, não esqueça de responder com os comandos, pois sei muito pouco sobre o linux terminal commands !!

    
por DroidBee 12.02.2014 / 10:06

1 resposta

2

Abra o arquivo sources.list ,

sudo gedit /etc/apt/sources.list

Remova as linhas que foram mencionadas acima. Salve o arquivo.

Para os PPAs que causam erro, você deve excluir esse arquivo PPA também do diretório /etc/apt/sources.list.d .

Depois disso atualize os repositórios executando,

sudo apt-get update
    
por Avinash Raj 12.02.2014 / 10:29