how install wine32bit on FreeBSD ( in x64bit machine ? )

im only know how to install x64 bit ; (
use comand :
pkg install wine

pkg install wine32 - not work
pkg install i386-wine - too no work..
pkg install wine-i386 too not...
pkg search wine - find wine without x32 or i386 ...

how i can istall wine 32 bit, for windows 32-bit software ???
 
Wine got WOW64 support a while ago, for that, the 32bit version needs to be installed as well. When running wine on amd64, it actually prints a message how to do that, but anyways, just execute (as a NORMAL user, not root)
/usr/local/share/wine/pkg32.sh install wine mesa-dri

This installs the required i386 packages in $WINE_i386_ROOT, which defaults to a directory below your home dir.

To upgrade the i386 packages, use /usr/local/share/wine/pkg32.sh as you would use the normal pkg command, it's just a wrapper around it.
 
Back
Top