2

I am using WineTricks to install some DLLs, but I'm encountering this problem when installing .NET framework:

This product is not supported on a 64-bit OS.

So, how do I run WineTricks in 32-bit mode?

  • Possible duplicate of http://askubuntu.com/questions/136714/how-to-force-wine-into-acting-like-32-bit-windows-on-64-bit-ubuntu –  May 02 '16 at 03:36

1 Answers1

2

Set up a 32 bit Wine Bottle Prefix on a 64-bit System by using Wine Bottles, like so:

32-bit:
winearch=win32 WINEPREFIX="/path/to/new/wine/bottle" winecfg

64-bit:
winearch=win64 WINEPREFIX="/path/to/new/wine/bottle" winecfg


Never use the default WINE bottle. Use winetricks to select the bottle.

eyoung100
  • 655
  • 3
  • 16
  • just to add a tip, when running a 32bit application on a 64bit prefix, while calling wine64, we need to unset WINEARCH b4 calling it, or it will also give "bad exe format" error – Aquarius Power Jul 10 '17 at 20:33