After have google the problem a little bit, (and reinstalled Wine, and all other kind of stuff) I found out that the "Nothing happens after splash screen"-problem also was hiding in the AppDB part of WineHQ: http://appdb.winehq.org/objectManager.php?sClass=version&iId=18563&iTestingId=47094&bShowAll=false A way down, at: New Install Problem by Mike Carlstrom on Sunday December 6th 2009, 17:55 The short version are, eve set a value that make it not run again after the first run. That value are a: Code: bitsCancelled=1 There should be a: Code: bitsCancelled=0 and this value are set every time eve runs. And the solution are a little sh-fil. :) Code: sed -i 's/bitsCancelled=1/bitsCancelled=0/' ~/.wine/dosdevices/c\:/users/tacoz/Local\ Settings/Application\ Data/CCP/EVE/c_program_files_ccp_eve_tranquility/settings/prefs.ini; wine ~/.wine/dosdevices/c\:/Program\ Files/CCP/EVE/eve.exe Find your own location of the prefs.ini fil and set it in, instead of my location, and the same for the eve.exe fil. Save this in a .sh fil, run the Code: chmod +x run_eve.sh commando on it, and make your shortcut to it. For those who has the "Wine - Error Screen Window"-problem, the way I think I fix that problem, was to COMPLETELY remove wine with these lines: Code: sudo apt-get remove wine1.2 rm -rf $HOME/.wine rm -f $HOME/.config/menus/applications-merged/wine* rm -rf $HOME/.local/share/applications/wine rm -f $HOME/.local/share/desktop-directories/wine* rm -f $HOME/.local/share/icons/????_*.xpm And installed wine again and only installed the fonts with Winetricks. Code: sh winetricks corefonts But there had also come a new version of wine since my first try, So thy that version first... This should be it. It work for me, and I hopes that it works for you too.