web-dev-qa-db-fra.com

Ignorer l'acquisition du fichier configuré 'main / binary-i3860 / Packages'

root@debian:~# apt-get update
Ign:1 http://ftp.cz.debian.org/debian stretch InRelease
Hit:2 http://ftp.cz.debian.org/debian stretch-updates InRelease
Hit:3 http://ftp.cz.debian.org/debian stretch Release
Hit:4 http://security.debian.org/debian-security stretch/updates InRelease
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i3860/Packages' as repository 'http://ftp.cz.debian.org/debian stretch-updates InRelease' doesn't support architecture 'i3860'
N: Skipping acquire of configured file 'main/binary-i3860/Packages' as repository 'http://ftp.cz.debian.org/debian stretch InRelease' doesn't support architecture 'i3860'
N: Skipping acquire of configured file 'main/binary-i3860/Packages' as repository 'http://security.debian.org/debian-security stretch/updates InRelease' doesn't support architecture 'i3860'

root@debian:~# dpkg --print-foreign-architectures
i3860
root@debian:~# dpkg --print-architecture
AMD64

Maintenant, je ne sais vraiment pas comment réparer ça? je frappe seulement 4 services est mauvais ou bon?

le dossier /etc/dpkg/dpkg.cfg.d est vide.

3
Pavlik Abraham

i3860 est un nom incorrect pour l'architecture prise en charge.

  1. Fixé en utilisant:

    dpkg --remove-architecture i3860
    dpkg --add-architecture i386
    
  2. Puis mettre à jour à nouveau les listes

    apt update
    
1
user.dz

Mon problème est résolu. Ma solution était de supprimer l'architecture (incorrecte) i3860 et d'ajouter l'architecture (correcte) i386.

root@debian:~# dpkg --remove-architecture i3860
root@debian:~# dpkg --add-architecture i386
root@debian:~# apt update
Ign:1 http://ftp.cz.debian.org/debian stretch InRelease
Hit:2 http://ftp.cz.debian.org/debian stretch-updates InRelease
Hit:3 http://ftp.cz.debian.org/debian stretch Release
Hit:4 http://security.debian.org/debian-security stretch/updates InRelease
Get:5 http://ftp.cz.debian.org/debian stretch-updates/main i386 Packages [5,156 B]
Get:7 http://ftp.cz.debian.org/debian stretch/main i386 Packages [7,078 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main i386 Packages [455 kB]
Fetched 7,539 kB in 2s (2,985 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
root@debian:~#
1
Pavlik Abraham