wine is not fully initializing my prefix

Questions about Wine on Linux
Locked
mark4th
Level 1
Level 1
Posts: 8
Joined: Sat Feb 04, 2023 12:31 pm

wine is not fully initializing my prefix

Post by mark4th »

I downloaded a game that runs prefectly under wine, put its files in /home/me/wine/GAME and from within /home/me/wine i have a script such as...

export WINEARCH="win64"
export WINEPREFIX="/home/me/wine/GAME"
wine /home/me/wine/GAME/launcher.exe

running that script results in the dosdevices directly being created, the drive_c/users directory is created and so is the drive_c/windows directory. this last directory contains an empty system32 and syswow64. Nothing exists in either of these two directories. There is no Program FIles, Program Files (x86), ProgramData, users or windows directories.

needless to say I cannot launch the game application :/
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: wine is not fully initializing my prefix

Post by jkfloris »

You can try to update the prefix. Maybe then the files and folders will be created.

Code: Select all

WINEPREFIX="/home/me/wine/GAME" wineboot -u
If that doesn't help, post the terminal output and your Wine version.
Locked