ubuntu 16.04 上的 wine:无法安装 .msi 文件,如何排除故障?

ubuntu 16.04 上的 wine:无法安装 .msi 文件,如何排除故障?

这是我第三次尝试在 Ubuntu 16.04 上安装 Wine 来安装 .msi Windows 程序(Ableton live 10)。

我遵循以下步骤:

  739  sudo dpkg --add-architecture i386
  740  sudo add-apt-repository ppa:wine/wine-builds
  741  sudo apt-get update
  742  sudo apt-get install --install-recommends winehq-devel
  743  winecfg

一切正常(没有错误消息)。但是,尝试安装 Setup.msi 文件时没有任何反应,并提示以下错误:

wine msiexec /i ./Setup.msi 

0050:err:vulkan:wine_vk_init Failed to load libvulkan.so.1.
0078:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\wineusb": c0000142
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"wineusb" failed to start: 1114
0024:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet

我找不到任何相关的链接来解决 ubuntu 的这些错误消息。看起来它需要某种类型的 vulkan 驱动程序。任何安装教程中都没有提到这一点(我真的不想安装额外的图形驱动程序,因为我不打算在这个系统上玩游戏)。

欢迎提出任何提示或建议..!

编辑:

使用以下方式安装 Vulkan 后

sudo apt install vulkan-utils

现在的错误是:

0078:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\wineusb": c0000142
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"wineusb" failed to start: 1114
00bc:fixme:file:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0 method=0)
00bc:fixme:file:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0 method=0)
00bc:fixme:file:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0 method=0)
0024:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet

相关内容