Questions tagged [wine]

Wine is a software emulator used to run Windows software on UNIX-like operating systems. Use this tag for questions about developing software that interoperates with Wine, or developing Wine itself. Questions about *using* Wine belong elsewhere, possibly on Super User.

Wine lets you run Windows software on other operating systems. With Wine, you can install and run these applications just like you would in Windows.

Questions about using Wine to run Windows software are not appropriate for Stack Overflow. They should be posted on Super User, or possibly on a site specific to your operating system (e.g, AskUbuntu for Ubuntu users).

613 questions
4
votes
4 answers

How to make a simple Wine-based installer for Windows application

My Windows application runs under Wine, but the installation is a bit of a headache for laymen, and the wrappers I've seen online (PlayOnLinux, Wine Doors) require even more packages to be installed. Is there a way to make a package that will…
zaratustra
  • 8,148
  • 8
  • 36
  • 42
4
votes
1 answer

Mono does not appeared to be installed error (winetricks) even though it's installed

I'm trying to install dotnet4.5 using winetricks on Ubuntu12.04 64bit. It keeps on giving me "Mono does not appear to be installed " error though I have mono installed. I ran these two commands to get mono and mono-complete sudo apt-get…
Cyber Wolf
  • 41
  • 1
  • 3
4
votes
2 answers

How to run msi files under Wine

Every time I try to run this program, it gives me this error. czipperz@CzipperzComputer~/Downloads> msiexec /i Corsair-Utility-Engine-v1.3.91.msi err:msidb:get_tablecolumns column 1 out of range err:msidb:get_tablecolumns column 2 out of…
Czipperz
  • 3,268
  • 2
  • 18
  • 25
4
votes
2 answers

How to run multiple Wine instances in parallel

How can one run multiple wine process at the same time on one machine ? I'm using a windows software through wine. and I would like to run it in parallel.
fRed
  • 75
  • 1
  • 7
4
votes
2 answers

The entry point method could not be loaded

I'm trying to execute iExplorer with wine in ArchLinux (x64). It's for accessed at my iPod. But when I enter: wine iExplorer. I have this error: The entry point method could not be loaded. Have you an idea?
4z3rty
  • 43
  • 1
  • 4
4
votes
3 answers

Win32 API: GetLastError() with FormatMessage() prints a junk

I'm just trying to get a text of the last error with this simple code: #include #include #include int main(){ char err[256]; memset(err, 0, 256); FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM, NULL,…
Hi-Angel
  • 4,933
  • 8
  • 63
  • 86
4
votes
1 answer

Compiling Golang applications under Wine

I'm trying to create an unattended (and perhaps deterministic) build process for an application written in Go. The idea is to use create a Dockerfile which installs all the prerequisites so it's easy to share the build process with others and…
Maran
  • 2,751
  • 15
  • 12
4
votes
2 answers

Set foreground window for Windows program running under Wine

I'm looking for a way to programmatically manipulate a windows program running on Linux under Wine. Is there something similar on Linux to the Windows SetWindowForeground win32 command? A function that sets a window by name to the foreground, that…
pyCthon
  • 11,746
  • 20
  • 73
  • 135
4
votes
4 answers

How to capture Ctrl-C and use it to exit an endless loop properly

I'm trying to run a program inside an endless loop because it sometimes dies for no reason. I would like to be able to hit Ctrl-C to prevent the program being restarted though. I don't want Ctrl-C to kill the program, just to wait until it dies,…
localhost
  • 1,253
  • 4
  • 18
  • 29
4
votes
0 answers

Python cross compilation to Windows with Nuitka failing

I'm trying to compile a Python 3 file into a Windows executable from inside Ubuntu using Nuitka with the instructions here. When trying to compile, I get the error Error, no 'Python.h' development headers can be found, dependency not satisfied! It…
kiri
  • 2,522
  • 4
  • 26
  • 44
4
votes
1 answer

Ubuntu 13.04: No windows.h found for winegcc?

I'm trying to compile a very simple C file with winegcc that utilizes #include The compilation fails because it cannot find windows.h The code is nearly identical to a prior stackoverflow post, viz: Are there any way to link my program…
user2777502
  • 41
  • 1
  • 3
4
votes
1 answer

Is it possible to get output from windows application through wine?

I'm writing a python GUI for a downloader in windows. Currently I can wine that application in some way to download things from the website. I want to write a GUI which calls the downloader so that it's easier for myself to use it. So one important…
yu239
  • 53
  • 4
3
votes
1 answer

Sending keycode to Xorg + wine with bash script

How do I send keycode to currently running application in linux which is running under wine? I would like the it to be under bash for simplicity.
picca
  • 857
  • 1
  • 10
  • 16
3
votes
1 answer

How to preload library with ld_preload to wine(windows game)?

I want to learn how to preload and hook functions in wine running windows apps. I'm trying to preload a library with ld_preload to wine(windows game(32-bit)) on Arch Linux (64-bit but I think I installed 32-bit support). I get the error wrong ELF…
JustOneMan
  • 231
  • 1
  • 9
  • 34
3
votes
0 answers

Build a program with mingw on linux and run under wine --- UTF-8 support

I have C code that prints some characters. I would like to see these characters printed, as opposed to an alphabet soup, #include int main() { const char* test = "Greek: αβγδ; German: Übergrößenträger"; printf("%s\n",…
n. m. could be an AI
  • 112,515
  • 14
  • 128
  • 243