跳过获取配置文件'..不支持体系结构'arm64'
Skipping acquire of configured file '.. doesn't support architecture 'arm64'
每当我做 sudo apt-get update
这个输出出现
$ sudo apt-get update
Hit:1 http://archive.raspberrypi.org/debian buster InRelease
Hit:2 http://raspbian.raspberrypi.org/raspbian buster InRelease
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'contrib/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'non-free/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'rpi/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
而且有 >N: Skipping acquire of configured file
行很烦人,虽然这些行不影响性能,我的意思是我仍然可以毫无问题地更新或升级包甚至安装包。
所以问题是,我怎样才能删除那些 >N: Skipping acquire of configures file
消息
我遇到了同样的问题。我通过输入以下命令修复了它:
sudo dpkg --remove-architecture arm64
我怀疑我可能在较早的时候错误地添加了 arm64
架构。标准 32-bit
Raspberry Pi OS(又名 Raspbian)不支持 64-bit
应用程序。
每当我做 sudo apt-get update
这个输出出现
$ sudo apt-get update
Hit:1 http://archive.raspberrypi.org/debian buster InRelease
Hit:2 http://raspbian.raspberrypi.org/raspbian buster InRelease
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'contrib/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'non-free/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'rpi/binary-arm64/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' doesn't support architecture 'arm64'
而且有 >N: Skipping acquire of configured file
行很烦人,虽然这些行不影响性能,我的意思是我仍然可以毫无问题地更新或升级包甚至安装包。
所以问题是,我怎样才能删除那些 >N: Skipping acquire of configures file
消息
我遇到了同样的问题。我通过输入以下命令修复了它:
sudo dpkg --remove-architecture arm64
我怀疑我可能在较早的时候错误地添加了 arm64
架构。标准 32-bit
Raspberry Pi OS(又名 Raspbian)不支持 64-bit
应用程序。