我正在尝试将一些 lxd 容器从运行 Ubuntu 20.04 的 Raspberry Pi 复制到运行 22.04 的 Raspberry Pi。容器使用 macvlan,如果我尝试运行容器,则会产生以下错误:
Error: Failed to start device "eth1": Failed to run: ip link add mac81f2ac4a link eth0 type macvlan mode bridge: Error: Unknown device type.
看了一下lsmod
,在运行 20.04 的 pi 上我看到了macvlan
模块,但在 22.04 上没有。尝试过更新和重启,但无济于事。
有人能指点一下吗?
答案1
简单的解决方案:
sudo apt install linux-modules-extra-raspi
macvlan 模块现在可用。