跳过配置文件“main/binary-i3860/Packages”的获取

Pav*_*ham 6 updates package-management dpkg ftp

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
Run Code Online (Sandbox Code Playgroud)

我现在真的不知道如何修复这个?我只打了 4 个服务是坏还是好?

文件夹 /etc/dpkg/dpkg.cfg.d 为空。

use*_*.dz 1

i3860是受支持架构的错误名称。

  1. 使用以下方法修复它:

    dpkg --remove-architecture i3860
    dpkg --add-architecture i386
    
    Run Code Online (Sandbox Code Playgroud)
  2. 然后再次更新列表

    apt update
    
    Run Code Online (Sandbox Code Playgroud)