Errore Ubuntu 64-bit "Impossibile recuperare il file [..] binary-i386 / Packages" durante l'aggiornamento dei repository apt


12

Ho il seguente problema su Ubuntu 12.04 LTS su una macchina a 64 bit: Ogni volta che provo ad aggiornare i repository aptitude, l'aggiornamento fallirà stranamente con un errore relativo a i386 . Presumo che ciò non dovrebbe accadere su un sistema a 64 bit.

root@liv-HP-Compaq-dc7900:/home/liv# apt-get update
Ign file: apt-build Release.gpg
Get:1 file: apt-build Release [107 B]                                          
Ign file: apt-build/main TranslationIndex                                      
Err file: apt-build/main i386 Packages                                         
  File not found
[..]
W: Failed to fetch file:/var/cache/apt-build/repository/dists/apt-build/main/binary-i386/Packages  File not found

E: Some index files failed to download. They have been ignored, or old ones used instead.

Ho provato a ripristinare status-oldsenza fortuna:

sudo cp /var/lib/dpkg/status-old /var/lib/dpkg/status

Ho anche provato:

root@liv-HP-Compaq-dc7900:/home/liv# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 90 not upgraded.

Ma non sembra fare o segnalare nulla di utile. Ogni successivo apt-get updatefinisce con un errore.

Per la cronaca, il mio /etc/apt/sources.listfile è simile al seguente:

# deb cdrom:[Xubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/main/binary-i386/

# deb cdrom:[Xubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/multiverse/binary-i386/
# deb cdrom:[Xubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/restricted/binary-i386/
# deb cdrom:[Xubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/universe/binary-i386/
# deb cdrom:[Xubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ precise main multiverse restricted universe

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://nl.archive.ubuntu.com/ubuntu/ precise main restricted
deb-src http://nl.archive.ubuntu.com/ubuntu/ precise main restricted

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

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-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 precise partner
# deb-src http://archive.canonical.com/ubuntu precise partner

## 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 precise main
deb-src http://extras.ubuntu.com/ubuntu precise main
deb http://cran.at.r-project.org/bin/linux/ubuntu precise/
# deb-src http://cran.at.r-project.org/bin/linux/ubuntu precise/
# deb http://archive.canonical.com/ precise partner
# deb-src http://archive.canonical.com/ precise partner

E il kernel in uso è:

liv@liv-HP-Compaq-dc7900:~$ uname -a
Linux liv-HP-Compaq-dc7900 3.2.0-57-generic #87-Ubuntu SMP Tue Nov 12 21:35:10 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

Cosa c'è di sbagliato e come posso ripararlo?


è in arrivo una correzione di Google ( bug qui )
törzsmókus


@ törzsmókus Questa domanda non ha nulla a che fare con Google in particolare e ha preceduto la domanda collegata di circa 2 anni. Semmai, la domanda a cui ti colleghi è un duplicato della presente domanda.
Landroni,

OK, accetto il tuo ragionamento. Volevo solo notare che la soluzione ai due problemi è essenzialmente la stessa.
törzsmókus,

@ törzsmókus Ecco perché IMO l'altra domanda dovrebbe essere contrassegnata come duplicata di questa, poiché questa è più generale.
Landroni,

Risposte:


27

Ho avuto lo stesso problema utilizzando il mio apt-mirrorserver per aggiornare il git-corepacchetto.

Nel mio caso, ho risolto il problema aggiungendo [arch=amd64]la voce originale in /etc/apt/sources.list.

Esempio:
originale: deb http://192.168.111.222/mirror/git-core precise main
soluzione:deb [arch=amd64] http://192.168.111.222/mirror/git-core precise main

I dettagli sono disponibili all'indirizzo: https://wiki.ubuntu.com/MultiarchSpec#apt_sources

Nel tuo caso, è necessario modificare /etc/apt/sources.list.d/apt-build.list.


1
Funzionava adesso. Ho dovuto solo usare il [arch=amd64]trucco /etc/apt/sources.list.d/apt-build.list.
Landroni,

(Mint-64) Il mio problema era con google-chrome, quindi il file che dovevo modificare era diverso ma la modifica era la stessa. Tuttavia, come il file mi ha avvertito, la modifica è stata successivamente ripristinata dal sistema che genera il file. Un thread reddit mi ha indicato di utilizzare direttamente il client Update Manager (Modifica-> Sorgenti software -> Repository aggiuntivi -> Modifica URL ...). Devo ancora vedere se questo garantirà il cambio, ma sospetto che lo farà.
jgreen

5

Come suggerito dalla risposta accettata, ho dovuto modificare il contenuto di:

/etc/apt/sources.list.d/apt-build.list

A partire dal:

deb file:/var/cache/apt-build/repository apt-build main

per:

deb [arch=amd64] file:/var/cache/apt-build/repository apt-build main

Si noti che l'errore proviene esclusivamente da apt-build.list. Non sono /etc/apt/sources.liststate necessarie modifiche per risolvere il problema.


1

Ho dovuto apportare un'altra leggera correzione, ovvero:

deb [arch=amd64 trusted=yes]  file:/var/cache/apt-build/repository apt-build main

prima che apt smettesse di lamentarsi - non avevo mai affrontato le [opzioni] di sources.list prima, quindi mi ci sono voluti alcuni minuti di google e tentativi / errori per farlo bene ...

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.