LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   running .exe files on ubuntu 9.04 (https://www.linuxquestions.org/questions/linux-software-2/running-exe-files-on-ubuntu-9-04-a-770307/)

firdous 11-19-2009 04:49 PM

running .exe files on ubuntu 9.04
 
please give me detailed info on how to run .exe files i've tried many alternatives like using software sources option in ubuntu ,their i pasted the winehq-jaunty jackopole option and also tried importing scottritchie.gpg file from many websites but i get an error message like public key not found many websites claim that the key used is a wrong if so please provide me the exact solution to this problem im giving the key for ur ready reference
please provide suggestions asap thank you.

-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

mQGiBEFLKlcRBACGtTZaNNfZSQ+ffRNujHPKIuZ4B33YwtE7+ObEzcqyJlH8PtYv
Bu8sGoc55l0Sm/Dpx73HBTaov5+796yV0aPc6qW5jVOcCVMasiMlyWVT/FmbHiZH
QcfvWli1MMBGf1tfwjqpKwAhOlM3N79QVG1okZG5k67kkEVbYjLuOFzzIwCguLwe
iIIJdL5SIygQaE0PwL/stysD/j+hJFJPCAHGyscPhAZkBMcXna7f/91HA416F5D1
tW8pzUFYQ0IEYu7FvDLzfqY7Tk4xuajdPLZQcUksjl2V4w+S3lFUboM218wT9o54
x7bZGvDLp0oGpN9Soq0oBPt3LKY2sgN9UCKzhGo8DtNt5yheCFtmJGQxuJaWuDo+
UO5UA/wMPZtwxldLIsstmaW7oBQDCDyNXGJ5TnvgIonwK6vVUKFwYt1TCS/YlMHr
BQYy9EIm85vzkWrsX2ldBA8HOrVo7jgWeVurp3bakeWPMGq1lQVncwOZkQ3XNLym
MTbf/LXvLhOHV+CATWyED6gejL78l3+KSV+oLF16kx9r8K4be7QlU2NvdHQgUml0
Y2hpZSA8c2FyaXRjaGllQHVjZGF2aXMuZWR1PoheBBMRAgAeBQJBx4IWAhsDBgsJ
CAcDAgMVAgMDFgIBAh4BAheAAAoJEFhAMCY4fuJjMqQAnAqz8O3kxSaJ+Pjcsb+R
hAnLhd00AJ9EFMOh4SOAjJTL8Iu5lJ8/c0cDy7QjU2NvdHQgUml0Y2hpZSA8c2Nv
dHRAb3Blbi12b3RlLm9yZz6IWgQTEQIAGgULBwoDBAMVAwIDFgIBAheABQJDgSBv
AhkBAAoJEFhAMCY4fuJjNjYAn1Pw93WBjZL5fNaxi7Jyg9YF1KDrAJ9kVIsrKoLA
C/b24y+jy0DKIW7zd7QhU2NvdHQgUml0Y2hpZSA8c2NvdHRAdHV6YWtleS5jb20+
iF4EExECAB4FAkHHgfkCGwMGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQWEAwJjh+
4mNN3ACdGR7Fu0w5nRPwDnCBEv2R+PzMYU8AoIUd07p6OJwflcbOr7d2S0lG+70u
uQENBEFLKloQBACi5laYdES+P/X34KRhy5i+yd2359qZHhGa37V7HbvgrLWR1f8p
Zgj1kbHpjTMWZPWqxCPrsQddj7F0AHp9Oa46cU0dVkCxnIPegfEz2c+axRDcSxQN
le8zcgzMQPRYPt0gx8eMsyfmUAUGYe08he+M3jLDPFoNu5a6XGZYKvRpowADBQQA
n4lRDd0GZMP8iuS176UlakUqCG86H6VX3fD+lNpSbzwXzXgSGrwVBvL1qPWq6dSV
SkPJXoZsBhLrNIrhjBNnQpCsuJMwdtIvfb/XL/pccl7vUkxjQ4pL8WOiszDNBffz
KwIvGg4/J2bRk85dpXU1z/0G5Aj7ekCjwfXUnMB01bCIRgQYEQIABgUCQUsqWgAK
CRBYQDAmOH7iY/QgAKCiEcdPLEN+i4pLVJtbavPM9JoC3gCgiRB92S16ymPYUZxE
GmakKn8uyWM=
=wtPo
-----END PGP PUBLIC KEY BLOCK-----

XavierP 11-19-2009 05:34 PM

Usually it's install wine (sudo apt-get install wine) then run winecfg and then run the program with wine /path/to/<programname>.exe (the /path/to/ part is optional and only needed if you aren't in the .exe file's directory.

Can you show us the exact error message you get when you try to run a program and take us through your wine install steps.

Welcome to LQ (I have moved this to the Linux-Software sub-forum as the intro section is purely to say hello).

lonelygoat 11-19-2009 08:12 PM

Only a small set of windows applications run under Wine...
 
I assume by .exe you meant Windows application. Wine supports a small number of Windows applications by implementing all functions imported from the EXE header, and functions dynamically loaded at runtime. missing the former causes launch problem, missing the later cause runtime problem. Well known applications like Microsoft Office suite (very old version)are supported by implementing functions specifically for it. You may find a simple app you wrote doesn't run on it although an old MS Office suite does. It probably doesn't worth it to put too much effort in it. Constantly get the same error message may be caused by the implementation of the required function is just a place hold, does nothing but return an error (I saw lots of code like that in Wine).

However, this was true 5 years ago. It may worth checking for updates. I would be surprised if the situation is foundamentally changed, given the approach has been used and the huge number of API functions which constantly evolve and expand..


All times are GMT -5. The time now is 01:18 AM.