I use ArchLinux and nVidia GTX 260 video card. Here is parts of my installation script:
Code: Select all
git clone git://source.winehq.org/git/wine.git ~/wine-git
cd ~/wine-git
git checkout wine-1.5.11
WINEPREFIX=$HOME/DayZ_wine-1.5.11
wget http://dl.dropbox.com/u/6901628/raw3.patch -O ../raw3.patch
git apply ../raw3.patch
./tools/make_requests
mkdir ../wine-build
cd ../wine-build
../wine-git/configure --prefix=$WINEPREFIX
make -j3
make install
export WINEPREFIX=$HOME/DayZ_wine-1.5.11/DayZ_Prefix
WINEXE=$HOME/DayZ_wine-1.5.11/bin/wine
$HOME/DayZ_wine-1.5.11/bin/winecfg
wget "http://winetricks.org/winetricks" -O ./winetricks
chmod +x ./winetricks
env WINE=$WINEXE ./winetricks d3dx9 vcrun2005 vcrun2008 corefonts
rm ./winetricks
$WINEXE /mnt/folder/AutoRun.exe #ArmA II
$WINEXE /mnt/folder1/AutoRun.exe #ArmA II: Operation Arrowhead
$WINEXE $HOME/Downloads/ARMA2OA_Update_160.exe
$WINEXE $HOME/Downloads/ARMA2OA_Update_162.exe
$WINEXE $HOME/Downloads/ARMA2_OA_Build_96751.exe
Code: Select all
configure: libOSMesa 32-bit development files not found (or too old), OpenGL rendering in bitmaps won't be supported.
configure: OpenCL 32-bit development files not found, OpenCL won't be supported.
configure: libhal 32-bit development files not found, no legacy dynamic device support.
configure: lib(n)curses 32-bit development files not found, curses won't be supported.
configure: libsane 32-bit development files not found, scanners won't be supported.
configure: libgphoto2 32-bit development files not found, digital cameras won't be supported.
configure: gstreamer-0.10 base plugins 32-bit development files not found, gstreamer support disabled
configure: libcapi20 32-bit development files not found, ISDN won't be supported.
configure: libcups 32-bit development files not found, CUPS won't be supported.
configure: libgsm 32-bit development files not found, gsm 06.10 codec won't be supported.
configure: WARNING: libxslt 32-bit development files not found, xslt won't be supported.
configure: Finished. Do 'make' to compile Wine.
Code: Select all
#!/bin/bash
export WINEPREFIX=$HOME/DayZ_wine-1.5.11/DayZ_Prefix #wineprefix location
WINEXE=$HOME/DayZ_wine-1.5.11/bin/wine #location of wine executable
cd "/home/sirakuzi/DayZ_wine-1.5.11/DayZ_Prefix/drive_c/Program Files/Bohemia Interactive/ArmA 2/"
$WINEXE ./Expansion/beta/arma2oa.exe -mod=@dayz
Here is two full output logs: I also tried switch off a sound (I made a empty "Audio" string at HKCU->Software->Wine->Drivers with regedit), but this have no effect for crashing.
It is my first time with asking such question at winehq.org, maybe I need to upload this as a bug?
I'll be very happy if someone could help me.