VirtualBox | 虚拟机启动失败

tags: [VirtualBox,Ubuntu,Windows,Nerwork,VM]
复制代码

问题描述:

使用VirtualBox 打开虚拟机 启动虚拟机时,依次出现两个问题php

第一个错误:

虚拟电脑控制台-错误

❌ 不能为虚拟电脑Linux 打开一个新的任务
🔽明细(D)
Nonexistent host networking interface,name 'Intel(R) Dual Band Wireless-AC 
8265'
(VERR_INTERNAL_ERROR)

返回  代码  E_FALL (0x80004005)
组件:  ConsoleWrap
界面: Iconsole {872da645-4a9b-1727-bee2-5585105b9eed}
复制代码

分析缘由: 多是此虚拟机是在 以前的电脑上建立的,使用以前设备上网络配置 而后在新的电脑(当前)打开,桥接网络接口仍是保留以前的配置,因此不存在此网络接口html

解决方案:shell

参考这个上面的回答 , 能够经过修改 .vbox 虚拟机配置文件markdown

<BridgedInterface name="Intel(R) Dual Band Wireless-AC 8265"/>

to this:

<BridgedInterface name="当前网络接口设备名"/>

复制代码

Hope this helps someone else.网络

参考:app


第二个错误:

描述: 对于第一个问题,我尝试切换不一样快照来解决问题,可是都不起做用 而后出现了第二个错误flex

虚拟电脑控制台-错误

❌ 不能为虚拟电脑Linux 打开一个新的任务
🔽明细(D)

cpum#1: X86_CPUID_FEATURE_ECX_PCID is not
supported by the host but has already exposed to the guest [ver=19 pass=final]
(VERR_SSM_LOAD_CPUID_MISMATCH) .


返回  代码  E_FALL (0x80004005)
组件:  ConsoleWrap
界面: Iconsole {872da645-4a9b-1727-bee2-5585105b9eed}
复制代码

缘由分析:this

暂无

解决方案:

最后是看到这个回答才解决问题 没法恢复保存的Virtualbox状态

其实第一个解答是在这里Cannot resume saved Virtualbox state

不过当时对于这 VirtualBox使用不是很熟悉,而后这个问题指向这个讨论

这个讨论有两个地方能够指示问题所在

When the VM is in saved state, the Discard button (yellow arrow pointing down) will be enabled. It's next to the Start button. You don't have to export and import anything, nor discard snapshots from the Snapshots tab. All you do with the discard button, is clear the 'hibernate' state. Same thing that you can do to Windows that is in hibernate, and you hit a key before it starts to resume from it, and select "Continue without resume" or similar from the menu you get. Or even better, the system is in standby, and you just pull the power cord

.

Ah, thank you. Very helpful.

So this is actually a good example of what I find confusing. It appears that there are actually three different "discard" actions? There is the big yellow button (which doesn't tell you what it is going to discard -- I assumed it would discard the entire virtual machine), there is the right-click on the current state and the right-click on a snapshot, each of which corresponds to a different keystroke. Not obvious.

Anyway, thank you again!

⚠️关键: virtualBox 管理器菜单选项有一个 黄色的向下的箭头按钮,点击这个清除(discard)状态(state)

具体缘由,多是清除一些东西,由于是切换了快照致使第二个问题

image.png

清除以前:

image.png

点击清除:

image.png

image.png

参考:

相关文章
相关标签/搜索