It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Realized that I had installed both NWN and NWN2 to .wine which is 64bit. They run fine, but looking at GOG games that will probably need 32bit so:

create the prefix
WINEPREFIX=~/.wine32 WINEARCH=win32 wineboot
installed a game:
cd "NWN diamond"
WINEPREFIX=~/.wine32 wine setup_nwn_diamond_2.0.0.15.exe

Ran it and of course got the blank screen for menus so:

to winetricks it
WINEPREFIX=~/.wine32 winetricks

and added ddr=gdi

Looks like it's running fine, but how do I know it's 32bit? Should I have put WINEARCH=win32 on the install command line above.
It created a desktop icon (I renamed the 64bit one) and that's what I execute it from...
Post edited September 19, 2016 by kris2424
avatar
kris2424: but how do I know it's 32bit?
Simple. Use the command "winecfg" and see if you can set your Windows version to, say, WIndows 98 or 95 in WIne's configuration utility. If yes, then you have a 32-bit prefix. If the oldest you can go is Windows XP, then you have a 64-bit prefix.
Post edited September 19, 2016 by JudasIscariot
avatar
kris2424: but how do I know it's 32bit?
avatar
JudasIscariot: Simple. Use the command "winecfg" and see if you can set your Windows version to, say, WIndows 98 or 95 in WIne's configuration utility. If yes, then you have a 32-bit prefix. If the oldest you can go is Windows XP, then you have a 64-bit prefix.
Thanks! I did both:

kris@kris-Z97X-UD3H:~$ winecfg
kris@kris-Z97X-UD3H:~$ WINEPREFIX=~/.wine32 winecfg


and both go back to windows 2, so that must mean that the first .wine it created was 32bit, which I guess makes perfect sense since I am using the wine installed by playonlinux. Duh! Thanks! Now how do I remove the new prefix I created? I'll google...
avatar
JudasIscariot: Simple. Use the command "winecfg" and see if you can set your Windows version to, say, WIndows 98 or 95 in WIne's configuration utility. If yes, then you have a 32-bit prefix. If the oldest you can go is Windows XP, then you have a 64-bit prefix.
avatar
kris2424: Thanks! I did both:

kris@kris-Z97X-UD3H:~$ winecfg
kris@kris-Z97X-UD3H:~$ WINEPREFIX=~/.wine32 winecfg

and both go back to windows 2, so that must mean that the first .wine it created was 32bit, which I guess makes perfect sense since I am using the wine installed by playonlinux. Duh! Thanks! Now how do I remove the new prefix I created? I'll google...
Just erase the .wine folder you no longer need :)
avatar
kris2424: Thanks! I did both:

kris@kris-Z97X-UD3H:~$ winecfg
kris@kris-Z97X-UD3H:~$ WINEPREFIX=~/.wine32 winecfg

and both go back to windows 2, so that must mean that the first .wine it created was 32bit, which I guess makes perfect sense since I am using the wine installed by playonlinux. Duh! Thanks! Now how do I remove the new prefix I created? I'll google...
avatar
JudasIscariot: Just erase the .wine folder you no longer need :)
Thanks!
avatar
kris2424: Looks like it's running fine, but how do I know it's 32bit? Should I have put WINEARCH=win32 on the install command line above.
the WINEARCH can only be set the first time when you create the wineprefix. It can't be changed afterwards.
So you don't need to add WINEARCH=win32 to the install comand line.
avatar
kris2424: Looks like it's running fine, but how do I know it's 32bit? Should I have put WINEARCH=win32 on the install command line above.
avatar
immi101: the WINEARCH can only be set the first time when you create the wineprefix. It can't be changed afterwards.
So you don't need to add WINEARCH=win32 to the install comand line.
Thanks!!!