Ses Manijak
Ses Manijak

Reputation: 133

Application tried to create a window, but no driver could be loaded

I'm trying to open .exe file on my Linux vps, yet when i try i get this error:

hitleap@STEFAN:~/Desktop$ wine Hitleap+Viewer.exe
it looks like multiarch needs to be enabled.  as root, please
execute "dpkg --add-architecture i386 && apt-get update && apt-get install wine32"
wine: Bad EXE format for Z:\home\hitleap\Desktop\HitLeap+Viewer.exe.
hitleap@STEFAN:~/Desktop$ Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that #DISPLAY is set correctly.

How to make this work?

Upvotes: 5

Views: 32279

Answers (3)

e_v_e
e_v_e

Reputation: 631

As silly as it sounds. Switch off and on my laptop was what worked for me :)

Upvotes: 0

rapto
rapto

Reputation: 419

In ubuntu 14.04, this was solved by installing 32 bit version of libSM6:

sudo apt-get install libsm6:i386

Upvotes: 1

Ses Manijak
Ses Manijak

Reputation: 133

As per your message:

It looks like multiarch needs to be enabled. As root, please execute "dpkg --add-architecture i386 && apt-get update && apt-get install wine32"

So as root, type the following command and hit Enter:

dpkg --add-architecture i386 && apt-get update && apt-get install wine32

Upvotes: 3

Related Questions