These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

Linux

 
  • Topic is locked indefinitely.
 

Fedora 17

Author
Minorucha
Mission Runners Corp
#1 - 2012-12-18 06:42:21 UTC
How do I run eve on Fedora 17??
I havent found any threads that describe the process of installing eve on fedora
Nebu Retski
Lead Farmers
#2 - 2012-12-18 11:31:54 UTC
Minorucha wrote:
How do I run eve on Fedora 17??
I havent found any threads that describe the process of installing eve on fedora

That's because it's the same as on other distributions. Just install the latest wine and winetricks following the instructions for Fedora (I can't be arsed to find their wiki, forums, manuals because they have an awefull site). Then just follow the typical installing eve instructions.
Kismeteer
Bat Country
Pandemic Horde
#3 - 2012-12-18 15:48:05 UTC
Minorucha wrote:
How do I run eve on Fedora 17??
I havent found any threads that describe the process of installing eve on fedora


Try doing: yum install wine winetricks
Then use a file manager to find the eve install file, make sure it's executable, and then run it.

I have a more detailed description of how to install it on Ubuntu, and most of the steps are the same, except the ppa addition and using yum instead of aptitude.
Accurus
X.S. Industries
#4 - 2012-12-19 19:15:05 UTC
I found it was a complete pain in the rectum as I have an ATI card to run it on. Bad times. So much so that I ended up putting windoze 7 on my beloved FC17 box :(
Calebus Phobeus
Eternal Seekers of Darkness
#5 - 2012-12-30 11:03:43 UTC
I am running eve on Fedora 17 since it comes out and cannot report any serious issue that was not related to wine or incoming patches. Its working very nice here with a high performance and excluding the CQ everything is working like its expected. Just give it a try. Following the instructions from WineHQ shall be sufficient to get it running:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=25823

Winetricks is btw not available in the official repository. Just grab it from http://wiki.winehq.org/winetricks.

The only real issue is with the native libraries and the update patches. Caused some troubles before it was actually running. Just create two scripts for launching eve. For normal starts:
Quote:

#!/bin/sh
export WINEDLLOVERRIDES="*msvcr100,*msvcr90,*msvcr80=b,n"
WINEDEBUG="-all" WINEARCH=32 WINEPREFIX=~/.wine-eve padsp wine ~/.wine-eve/drive_c/Programme/CCP/EVE/bin/ExeFile.exe


And if updates are available, just run a script like this:
Quote:

#!/bin/sh
export WINEDLLOVERRIDES="*msvcr100,*msvcr90,*msvcr80=n,n"
WINEDEBUG="-all" WINEARCH=32 WINEPREFIX=~/.wine-eve wine ~/.wine-eve/drive_c/Programme/CCP/EVE/eve.exe


If you run into any issue, just let us know.