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

我在我的ubuntu中使用wine安装了DivX播放器。 我想从终端调用播放器。 可能吗? 如果有,怎么样?

提前致谢。

如果您使用从存储库安装的葡萄酒,那么葡萄酒相关文件将存储在名为~/.wine的文件夹中

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

您可以通过与Windows中的命令行类似的方式启动Windows程序,但前缀为wine

例如

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

因此,如果您的divx被调用(例如) divxplayer.exe – 例如在~/.wine/drive_c/program files/divx

然后你可以开始你的葡萄酒divx播放器

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