Skip to content

Instantly share code, notes, and snippets.

@japboy
Last active December 16, 2015 14:39
Show Gist options
  • Save japboy/5450464 to your computer and use it in GitHub Desktop.
Save japboy/5450464 to your computer and use it in GitHub Desktop.

Wine 1.6 on Mac OS X

インストール

依存ライブラリは --universal オプションを付与してコンパイルされている必要がある模様。

brew install wine winetricks

設定

初期設定

初回起動時は以下のようなコマンドで WINEPREFIX を指定して初期化できる:

WINEPREFIX="${HOME}/.wine" wine 'wineboot'

64 bit 環境で 32 bit モードで初期化する場合はコマンドを以下のようにする:

WINEPREFIX="${HOME}/.wine" WINEARCH='win32' wine 'wineboot'

設定ダイアログ

Add/Remove Programs:

wine uninstaller

Wine Control Panel:

wine control

Wine configuration:

wine winecfg

winetricks

ヘルプ

winetricks -h

項目一覧

winetricks list-all

.NET Framework

Wine 1.6 では標準で対応している模様。

*** .NET support

- The Mono runtime is packaged as an MSI file, and its installation
  can be managed from the "Add/Remove Programs" control panel. It is
  automatically installed on Wine prefix updates.

- .NET mixed mode assemblies are supported.

- The Microsoft .NET 4.0 runtime can be installed for cases where Mono
  is not good enough yet.

MSI

wine msiexec /i /path/to/installer.msi

参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment