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

WINE How to make .exe shortcut with parameters?

I have an .exe file that I would like to run with the following parameters: -no-cef-sandbox In the WineStaging terminal I would use the following command to run the .exe: #!/bin/bash WINEPREFIX=~/.wine-gwent/ wine ~/.wine-gwent/drive_c/Program\…
zenben1126
  • 685
  • 1
  • 7
  • 25
2
votes
1 answer

Problems compiling C++ programs with wineg++/winelib

I am having trouble compiling C++ programs with wineg++. To illustrate my problem, I have written two test programs. msgbox.cpp #include #include #include #include int APIENTRY WinMain(HINSTANCE,…
isekaijin
  • 19,076
  • 18
  • 85
  • 153
2
votes
0 answers

Wine is installed but running command wine returns "bash: wine: command not found"

I recently successfully installed wine 3.0 rc2, and double checked to make sure it was installed. I did this all through commandline using homebrew. However, when I run the command wine APP.exe it returns -bash: wine: command not found I…
2
votes
4 answers

How do I install the latest developer package for wine with homebrew? (wine-3.0-rc2)

When I type in: brew install wine That should install Wine 2.0.3, right? (the latest release) But I want to install a specific version of wine: wine 3.0 rc2 What would the command to do this be if I'm using homebrew? I've tried brew install…
2
votes
1 answer

Run wine commands from Python 3.6 on Mac OSX

I am trying to write a script in Python which opens wine and then sends code to the wine terminal to open a .exe program. The .exe program is also command driven. I can open wine, but I can't get any further: import shlex, subprocess line =…
2
votes
0 answers

Python 3.6, Wine and asyncio - ImportError: cannot import name '_overlapped'

I'm trying to install Flask inside Wine so that I can package with cx_freeze. I've had it working for a while, but I've just added Flask to the project. However, I can't seem to import Flask due to a missing library required by the core asyncio…
Phil Winder
  • 116
  • 1
  • 4
2
votes
0 answers

Using Wine With Jenkins

I have a local Jenkins server on my Windows laptop. I have created and configured a job that can only run on Windows since it uses VBScript and a Windows BAT file. Is it possible to create a similar job that can runs on a Jenkins server in Linux…
Krash
  • 45
  • 2
  • 8
2
votes
2 answers

Python subprocess.check_call(["wine"]..) has a synchronization issue

I have a python script which uses subprocess.check_call to launch Wine (Windows Emulator on Linux), then the wine launches Z:\\Program Files (x86)\\PeaZip\\peazip.exe. Firstly, when I tested this python script in debugging mode python3 -u -m ipdb…
MikimotoH
  • 393
  • 1
  • 4
  • 16
2
votes
1 answer

Running COM/DCOM based application on Linux via Wine

I want to run a COM/DCOM based application on a Linux servers. Why Linux? Because 90 % of my stack is running on linux and my cluster manager is also linux friendly. Would it be fair to use wine for it. I am not confident about the given…
Qasim Sarfraz
  • 5,822
  • 2
  • 20
  • 26
2
votes
3 answers

64bit debian and 32bit Wine

I'm trying to install 32bit Wine on 64bit Debian Jessie. I've tried suggestions from: Can't build 32bit Wine on 64bit linux and: Installing wine in debian but all the time I got: apt-get install libcapi20-dev:i386 libcups2:i386 libdbus-1-3:i386…
Mag
  • 23
  • 1
  • 4
2
votes
1 answer

Libtiff dependancy fails when installing wine with homebrew OSX 10.12.3

I am trying to install wine through homebrew. When its installing the dependancies, the libtiff fails because the source package url is not found and whole installer quits. I installed libtiff seperately and then tried, still this problem occurs.…
Rangarajan K
  • 93
  • 3
  • 14
2
votes
1 answer

Running a windows executable within R using wine in ubuntu

I am trying to execute a windows only executable called (groundfilter.exe from FUSION) within Rstudio on Ubuntu. I am able to run groundfilter.exe from a terminal using wine as follows: wine C:/FUSION/groundfilter.exe /gparam:0 /wparam:1…
2
votes
1 answer

Anaconda + wine - Switch env

Want to use py2exe in wine. Appears to be broken in python 3.5 Installed Anaconda 4.2.0 with python 3.5 Created new env: wine conda create -n py34 python=3.4 anaconda wine conda info --envs # conda environments: # py34 C:\Program Files…
John
  • 530
  • 5
  • 19
2
votes
0 answers

Is there a way to have embedded linux run (e.g. emulate) a Windows CE 6.0 application (MFC/C++)?

I have inherited a Windows CE 6.0 application that runs on a Samsung S3C6410 ARM11 single-board computer (specifically: KaneBeBe IV) and finding myself faced with a number of challenges. Though I know C++ I have not developed a WinCE application…
jacobq
  • 11,209
  • 4
  • 40
  • 71
2
votes
0 answers

Create executable Windows on Linux with cython and wine

I'm french, by advance, sorry for my english... I can make and use on linux a pyd (dll) file with this line cython -o script.c script.pyx i586-mingw32msvc-gcc script.c -Wall -I/home/User/.wine/drive_c/Python34/include -shared -o script.pyd…
Fred
  • 1,011
  • 1
  • 10
  • 36