Hello, can anybody tell me how to create a 32 bit wineprefix i am using wine on 64 bit machine wine32 bit and wine 64 are installed.
mikon29 wrote:> > can anybody tell me how to create a 32 bit wineprefix i am using wine on 64 bit machine wine32 bit and wine 64 are installed.Code: WINEARCH=win32 WINEPREFIX=/path/to/wineprefix winecfg Substitute the actual path to the wineprefix in the above. This has to be done on wineprefix creation; you can't change the architecture once it's created.
Hello, i try to set 32 bit wineprefix but fails: Code: [josy1982 at fedora Programme]$ WINEARCH=win32 WINEPREFIX=~/.wine winecfg wine: cannot find L"C:\\windows\\system32\\wineboot.exe" err:process:start_wineboot failed to start wineboot, err 2 fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet anybody an idea?
sounds like your wineprefix is messed up... did you delete ~/.wine and let Wine create it by itself?
Hello, i am on a 64 bit machine if i let wine setup yoursel then will create 64 bit prefix but i need 32 bit prefix.
On Sat, May 19, 2012 at 3:21 PM, mikon29 <wineforum-user at winehq.org> wrote:> Hello, > > i am on a 64 bit machine if i let wine setup yoursel then will create 64 bit prefix but i need 32 bit prefix. >Then do the following: WINEPREFIX=$HOME/wine32 WINEARCH=win32 wine winecfg. You can set this in your environment by exporting the two variables: export WINEPREFIX=$HOME/wine32 export WINEARCH=win32 Before running any program that requires a 32 bit Wine Prefix. James.