web-dev-qa-db-ja.com

構成済みファイル「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

今、私は本当にこれを修復する方法を知りませんか?私は4つのサービスだけが悪いか良いですか?

フォルダー/etc/dpkg/dpkg.cfg.dは空です。

3
Pavlik Abraham

i3860は、サポートされているアーキテクチャの間違った名前です。

  1. 以下を使用して修正しました:

    dpkg --remove-architecture i3860
    dpkg --add-architecture i386
    
  2. その後、リストを再度更新します

    apt update
    
1
user.dz

私の問題は解決しました。私の解決策は、(間違った)i3860アーキテクチャを削除し、(正しい)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