当我尝试运行 hello-world docker 镜像时出现以下错误:
ubuntu@ubuntu:~$ sudo docker run hello-world
docker: Error response from daemon: failed to create endpoint frosty_varahamihira on network bridge: failed to add the host (vethc6c068f) <=> sandbox (veth82a7475) pair interfaces: operation not supported.
ERRO[0000] error waiting for container: context canceled
我红这帖子看起来是完全相同的问题,但我无法安装不同的内核。
我尝试执行以下操作来安装新内核,但这导致出现下一个错误:
ubuntu@ubuntu:~$ sudo wget https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.7.5/amd64/linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb
--2021-10-22 13:47:14-- https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.7.5/amd64/linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb
Resolving kernel.ubuntu.com (kernel.ubuntu.com)... 91.189.94.216
Connecting to kernel.ubuntu.com (kernel.ubuntu.com)|91.189.94.216|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1223448 (1.2M) [application/x-debian-package]
Saving to: ‘linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb’
linux-headers-5.7.5-050705-generic_5.7.5-05070 100%[===================================================================================================>] 1.17M 2.53MB/s in 0.5s
2021-10-22 13:47:20 (2.53 MB/s) - ‘linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb’ saved [1223448/1223448]
ubuntu@ubuntu:~$ sudo dpkg -i *.deb
dpkg: error processing archive linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb (--install):
package architecture (amd64) does not match system (arm64)
dpkg: error processing archive linux-image-unsigned-5.14.9-051409-generic_5.14.9-051409.202109300934_amd64.deb (--install):
package architecture (amd64) does not match system (arm64)
Errors were encountered while processing:
linux-headers-5.7.5-050705-generic_5.7.5-050705.202006220832_amd64.deb
linux-image-unsigned-5.14.9-051409-generic_5.14.9-051409.202109300934_amd64.deb
对于那个错误我发现这例如,这没有帮助。
这也可能有帮助
ubuntu@ubuntu:~$ ls -l /boot
total 33299
-rw------- 1 root root 5112454 Sep 29 07:51 System.map-5.13.0-1008-raspi
-rw-r--r-- 1 root root 241335 Sep 29 07:51 config-5.13.0-1008-raspi
drwxr-xr-x 4 root root 2560 Jan 1 1970 firmware
lrwxrwxrwx 1 root root 28 Oct 13 13:29 initrd.img -> initrd.img-5.13.0-1008-raspi
-rw-r--r-- 1 root root 19242515 Oct 13 13:30 initrd.img-5.13.0-1008-raspi
lrwxrwxrwx 1 root root 28 Oct 13 13:29 initrd.img.old -> initrd.img-5.13.0-1008-raspi
lrwxrwxrwx 1 root root 25 Oct 13 13:29 vmlinuz -> vmlinuz-5.13.0-1008-raspi
-rw------- 1 root root 9492544 Sep 29 07:51 vmlinuz-5.13.0-1008-raspi
lrwxrwxrwx 1 root root 25 Oct 13 13:29 vmlinuz.old -> vmlinuz-5.13.0-1008-raspi
我正在使用Raspberry Pi 4 Model B Rev 1.2
。以下是其他版本:
Docker
ubuntu@ubuntu:~$ docker --version
Docker version 20.10.7, build 20.10.7-0ubuntu5
Ubuntu 操作系统版本
Ubuntu 21.10 aarch64
核心
ubuntu@ubuntu:~$ uname -rn
ubuntu 5.13.0-1008-raspi
我感谢任何提示和想法!
答案1
安装 linux-modules-extra-raspi 包以获取 veth 模块。