如何在 Kubuntu 上的 Dolphin 中运行 exe 文件

如何在 Kubuntu 上的 Dolphin 中运行 exe 文件

我已经安装了 wine。但是我如何将其设置为默认运行 exe 文件?

答案1

右键单击 .exe 文件时,转到“使用应用程序打开”,然后选择 WINE。

答案2

通常情况下,只需在文件管理器中双击执行 exe 文件即可通过 Wine 运行它。如果出于某种原因没有发生这种情况(除了尝试重新安装 Wine 以获得预期的行为),您可以执行以下操作:

在终端运行wine path_to_file.exe


为了通过(双击)运行它:创建一个~/.local/share/application/wine.desktop包含类似行的文件

[Desktop Entry]
Exec=wine %f
Name=Run in Wine
Mimetype=application/x-dosexec
Categories=System;Settings;

然后制作在 Wine 中运行exe 文件的默认“应用程序”(在 Dolphin 中:属性 > (选项卡)常规 > 添加)。


或者,创建~.local/share/kservices5/ServiceMenus/run_wine.desktop一个

[Desktop Entry]
Actions=wine
Mimetype=application/x-dosexec
ServiceTypes=KonqPopupMenu/Plugin
Type=Service
X-KDE-Priority=TopLevel

[Desktop Action wine]
Exec=wine %f
Name=Run in Wine
Icon=wine

以便在 Dolphin 中有右键单击上下文菜单选项(“服务菜单”)。


我现在无法测试,因为我现在不使用 Wine,但是这条线路konsole -e wine %f可能sh -c 'wine %f'需要它Exec

如果有人可以确认Exec=wine %f作品,请发表评论。

相关内容