Linux/wine

From Omnia
Revision as of 05:36, 25 September 2026 by Kenneth (talk | contribs)
Jump to navigation Jump to search

Wine

sudo dpkg --add-architecture i386
sudo apt update
sudo apt install --install-recommends winehq-staging

Rebuild Wine Prefix (~/.wine)
 wineboot -u

Test new wine prefix:
 WINEPREFIX=~/my_new_prefix wine your_executable.exe

Test wine with executable:
 xvfb-run -a wine your_executable.exe

Reconfig your wine prfix:
 rm -rf .wine
 winecfg
 # or if headless...
 xvfg-run wincfg

Debug Wine

If you are still stuck, you can generate a cleaner log file to parse by running your app with standard Wine debugging output: WINEDEBUG=-all,err+all wine your_application.exe

keywords