Wine

Wine:不檢查 Gecko 安裝

  • January 2, 2017

我想在沒有 Gecko 的情況下使用 wine,因為我只想執行簡單的應用程序,根本沒有 HTML 內容。配置(新)Wineprefix 時有沒有辦法跳過壁虎檢查?

相關:Wine:不檢查 Mono 安裝

您可以覆蓋mshtml以防止 wine 安裝壁虎。

WINEDLLOVERRIDES=mshtml=d wine somewineapp

為了防止單聲道和壁虎:

WINEDLLOVERRIDES=mscoree=d;mshtml=d wine somewineapp

並保持所有其他可能存在的WINEDLLOVERRIDES

WINEDLLOVERRIDES=mscoree=d;mshtml=d;$WINEDLLOVERRIDES wine somewineapp

也可以看看:

引用自:https://unix.stackexchange.com/questions/334144