wine

Simple bash problem related to executing command after previous has stopped (I am not programmer)

#!/bin/sh xmodmap -e "keycode 49 = equal plus" cd /media/5F53-7973/BGTrilogy/ wine ./bgmain.exe xmodmap -e "keycode 49 = dead_caron dead_tilde dead_caron dead_tilde notsign notsign" Basically what I want from it is that the last entry would only run after I quit wine ./bgmain.exe. What's the most foolproof way to do it? ...

Running software on linux through Wine

Hi, Our school is setting up a Linux computer lab for students to use. We have Kinetic Books and would like to run it on these computers. The software is java-based. Is it possible to run it under Wine? Are there any general rules-of-thumb for which programs are Wine-compatible? Thanks! ...

Has anyone gotten MASM Assembly Language working in Wine for Linux?

Apparently WIne doesn't support 16bit DOS apps. Anyone know how to Get MASM intel-style assembly working in wine? ...

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 advapi32.dll in Wine (edit: using the answers, I was able to call the function, but Lookup...