从命令行调用Wine安装的应用程序


22

我已经在Ubuntu上使用wine安装了DivX播放器。我想从终端调用播放器。可能吗?如果是,怎么办?

提前致谢。

Answers:


23

如果您正在使用从存储库安装的wine,则与wine相关的文件将存储在一个名为 ~/.wine

Windows程序存储在此文件夹中-例如 ~/.wine/drive_c/program_files/Internet Explorer

您可以通过与Windows中的命令行类似的方式来启动Windows程序,但在其前面加上 wine

例如

wine "c:\program files\internet explorer\iexplore.exe"

因此,如果您divxplayer.exe安装了名为(例如)的divx- 例如~/.wine/drive_c/program files/divx

然后您可以启动Wine divx播放器

wine "c:\program files\divx\divxplayer.exe"

逻辑上这将是wine "c:\program\internet explorer\iexplore.exe"- drive_c /计划是一个不寻常的路虽然-我想你创建了一个手动
fossfreedom

对先前的评论表示歉意。我要问一个有关如何处理文件路径中的(x86)的问题。我不知道如何使用引号在命令行中处理方括号。我认为我的意思是不发表我的评论。从那以后我删除了它。对于错误,我们深表歉意。
MorrisseyJ 2014年

5
wine explorer查找二进制文件的位置很有用
vp_arth
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.