Linux/wine: Difference between revisions
< Linux
(Created page with "<pre> sudo dpkg --add-architecture i386 sudo apt update sudo apt install --install-recommends winehq-staging <pre> 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") |
No edit summary |
||
| Line 1: | Line 1: | ||
== Wine == | |||
<pre> | <pre> | ||
sudo dpkg --add-architecture i386 | sudo dpkg --add-architecture i386 | ||
| Line 19: | Line 21: | ||
# or if headless... | # or if headless... | ||
xvfg-run wincfg | 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 == | |||
Revision as of 05:36, 25 September 2026
Wine
sudo dpkg --add-architecture i386 sudo apt update sudo apt install --install-recommends winehq-stagingRebuild 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 wincfgDebug 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.exekeywords