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
8
votes
2 answers

How to call Wine dll from python on Linux?

I'm writing a python script in Linux, and need to call some Windows functions available in Wine. Specifically, AllocateAndInitializeSid and LookupAccountSidW, to determine who is logged in to a remote Windows computer. These functions are part of…
Justin
  • 6,611
  • 3
  • 36
  • 57
8
votes
3 answers

Debugging a Delphi app on Wine

I have a Delphi Windows app that dies horribly under Wine - doesn't even get to creating the main form. Porting to Free Pascal is not an option for various reasons. Can I debug under Wine using Delphi's native means? If not, can I debug under Wine…
Seva Alekseyev
  • 59,826
  • 25
  • 160
  • 281
8
votes
3 answers

How to manually install zenity in homebrew?

Zenity is required for some apps like winetrick-gtk and its not installed automatically when you install winetricks. The problem is brew install zenity does not work, as such a package does not exist. The question is how can I install it manually in…
K.H.A.
  • 376
  • 3
  • 12
7
votes
2 answers

Using Wine and py2exe to create windows application out of a Python project

I recently built an application, for a client, which has several python files. I use ubuntu, and now that I am finished, I would like to give this to the client in a way that would make it easy for her to use in windows. I have looked into py2exe…
user1266969
  • 71
  • 1
  • 2
7
votes
2 answers

WINE and Windows named pipes

Here is my problem: I have a closed-source third-party Win32 application, which acts as a server for other programs via named pipes, i.e. it expects its clients to do smth like this: HANDLE h = CreateFile("\\\\.\\pipe\\$pipe_name$", GENERIC_READ |…
ScumCoder
  • 690
  • 1
  • 8
  • 20
7
votes
1 answer

wine32 is missing issue in ubunt 20.04, [[as root, please execute "apt-get install wine32" wine-5.0 ]]

enter code hereHow can i fixed the below wine32 missing issue in ubuntu 20.04 , i spent lot of time but did not get any luck. i installed wine-stable successfully, but when i tried to checking the wine version i am getting this message and wine…
Md. Bahar Uddin
  • 117
  • 1
  • 1
  • 6
7
votes
1 answer

Wrap Windows dll using Wine on Linux

Basically I'm wondering if there is a way using Wine (libwine maybe?) to make a wrapper .so for a windows .dll. Something where I load the .dll, load a few function pointers from it, and use Wine like an FFI. It seems like Wine must have to do this…
slembcke
  • 1,359
  • 7
  • 7
7
votes
0 answers

How does Wine translate syscalls?

My understanding is that Wine directly executes the machine code contained in a PE executable. Assuming this is correct, what happens if the machine code contains a system call, which would obviously not be understood by Linux? Does Wine somehow…
Nikolai
  • 3,053
  • 3
  • 24
  • 33
7
votes
2 answers

Get Haskell programs to assume a UTF8 locale under wine

I am trying to use GHC on wine to build one of my Haskell applications for windows. So far, this works well, but I am stuck running my test suite, which is intended to be run in an UTF8-locale (LANG=C.utf8 for example.) Unfortunately, under wine,…
Joachim Breitner
  • 25,395
  • 6
  • 78
  • 139
6
votes
0 answers

How to run pyinstaller with Wine on Mac? I need Python 3.6 or 3.7

I am using Mac OS and I need to create a windows executable for my Python script. I couldn't find anything that tells how to do it. I did install wine on Mac but not sure what to do now. Any help would be appreciated.
user8436761
  • 337
  • 1
  • 10
6
votes
1 answer

How did Wine64 manage to handle macOS?

It has been a major obstacle for decade. It was reported as impossible. Forum talks referred to issues related to setting and restoring GS. Wine HQ FAQ still refers to ABI incompatibility page which is not a live wiki page, but news archive…
OCTAGRAM
  • 618
  • 6
  • 12
6
votes
2 answers

can't compile wine on 64 bit ubuntu

I have been trying to compile wine on Ubuntu 14.04 64-bit and I can't for the life of me figure out what package dependency I'm missing here. I followed along with the guide on winehq and was able to complete it fine... however now I'm trying to…
Jordan Camp
  • 842
  • 4
  • 9
  • 20
6
votes
1 answer

Segfault on calling standard windows .dll from python ctypes with wine

I'm trying to call some function from Kernel32.dll in my Python script running on Linux. As Johannes Weiß pointed How to call Wine dll from python on Linux? I'm loading kernel32.dll.so library via ctypes.cdll.LoadLibrary() and it loads fine. I can…
6
votes
1 answer

Linux - Avoinding x server message when running .exe with wine

I'm trying to run a .exe file (that uses some other .dll files) with wine, in Ubuntu 11.04, command line, but i get an error regarding the x server not being started and that a window is being created (i attached a screenshot). When I run it…
Andrei F
  • 4,205
  • 9
  • 35
  • 66
5
votes
2 answers

Running Linux program using Windows DLL (winelib) without wine?

I have a Windows DLL and an API related to the DLL. The DLL is part of a driver of specific device, for which I would like to write a Linux (Android 4.0) software. I've read that it is possible to use a DLL inside Linux software (using winelib). If…
syntagma
  • 23,346
  • 16
  • 78
  • 134
1 2
3
40 41