我正在尝试在我的“Docker Home”上安装WIN10工具箱。在执行docker快速入门终端时,我收到以下错误:
Running pre-create checks...
Error with pre-create check: "VirtualBox is configured with multiple host-only adapters with the same name \"HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter\". Please remove one"发布于 2019-12-04 22:07:40
似乎您需要在VirtualBox中删除一个仅用于主机的网络适配器,因为有两个具有相同名称的适配器
“主机接口网络-VirtualBox”
并且您应该手动删除一个。您可以使用UI或通过命令行来执行此操作
vboxmanage hostonlyif remove "HostInterfaceNetworking-VirtualBox"https://stackoverflow.com/questions/59177732
复制相似问题