Running GUI Applications In Wine Without Desktop?

0

Possible Duplicate: Running wine without displaying the GUI window But The Answers Don't Solve My Problem.

I'm trying to run an application with wine, that seems to require a GUI, because when I run it, it returns

~ $ wine64 app.exe

wine: created the configuration directory '/app/.wine'
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
err:systray:initialize_systray Could not create tray window
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
Could not load wine-gecko. HTML rendering will be disabled.
wine: configuration in '/app/.wine' has been updated.
err:module:import_dll Library api-ms-win-crt-runtime-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-stdio-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-heap-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-string-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-convert-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-locale-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-math-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-time-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\app\\app.exe" failed, status c0000135

But in windows CLI it runs fine

If I run it again it returns

~ $ wine64 app.exe

Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
err:systray:initialize_systray Could not create tray window
err:wincodecs:PngEncoder_CreateInstance Failed writing PNG because unable to find libpng12.so.0
fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005
err:menubuilder:convert_to_native_icon error 0x80004005 creating bitmap encoder
err:module:import_dll Library api-ms-win-crt-runtime-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-stdio-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-heap-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-string-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-convert-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-locale-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-math-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:import_dll Library api-ms-win-crt-time-l1-1-0.dll (which is needed by L"Z:\\app\\app.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\app\\app.exe" failed, status c0000135
~ $ err:wincodecs:PngEncoder_CreateInstance Failed writing PNG because unable to find libpng12.so.0
fixme:ole:CoCreateInstance no instance created for interface {00000103-a8f2-4877-ba0a-fd2b6645fb94} of class {27949969-876a-41d7-9447-568f6a35a4dc}, hres is 0x80004005

(And Some Variant Of That For 30 Lines Or So)

I really don't know what is happening, it doesn't need input, I just want it to run.

user-interface
command-line-interface
wine
asked on Stack Overflow Feb 21, 2021 by user15069221 • edited Feb 22, 2021 by user15069221

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0