Unable to create a new virtual machine: No permission to perform this operation.

问题1:Unable to create a new virtual machine: No permission to perform this operation.

在创建虚拟机时出现这个错误,开始还以为虚拟机安装的有缺陷,结果想多了,只是创建虚拟机目录是root权限,使用普通用户无法写入才提示这个错误。

出现这个错误的时候,完全看不到相关日志信息,这也是一个比较奇怪的地方。当作经验记录下来。

问题2: Could not connect ‘Ethernet0’ to virtual network ‘/dev/vmnet8’

Getting this error message when starting a virtual machine.
To “fix” this i always have to run:

sudo modprobe vmnet && sudo vmware-networks --start

before connecting the network adapter.
来自:https://communities.vmware.com/thread/220597

问题3:An unhandled exception has occurred. This is most likely a bug. Please save a copy of the detailed exception and file a bug report.

这个问题定位在了,新创建虚拟机时选择split磁盘时造成的。而选择single磁盘就没有这个问题了。

问题4:安装虚拟机时出现Authentication is needed to run `/usr/lib/vmware/bin/vmware-setup-helper’ as the super user

  1. 把当前用户添加到sudo组中
sudo usermod -a -G sudo <username>
  1. 使用sudo启动
sudo vmware

就能顺利安装了。

参考:https://communities.vmware.com/thread/623778

你可能感兴趣的:(Linux系统管理)