Pages: 1 2 3 4 5 :: [one page] |
|
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Kismeteer
GoonWaffe Goonswarm Federation
606
|
Posted - 2014.05.08 18:36:00 -
[1] - Quote
This is how to play eve with most modern versions of Linux, like all the cool kids in EG. I use Ubuntu 14.04 LTS because the LTS branch tends to be more stable than most other distros. Plus, it's Debian under the hood and I can install experimental packages if I want.
Note: My shell scripts use 'e1' as eve with launcher, and 'v1' without launcher. The launcher is slow and unreliable on Linux, but necessary to patch. This is due to an SSL bug associated with wine.
- Install Ubuntu 14.04 LTS: You can use desktop, or server if you're a masochist like me. These ship with wine 1.6.2, which is perfectly fine to run eve. I like LTS because it's not as unstable as other desktops, but you can install unstable stuff if you want the 'latest'.
- Install your video driver: I am using 'sudo apt-get install nvidia-current', with Settings | Software & Updates | Additional Drivers | Nvidia Proprietary. You can see your video card easily with 'lspci | grep -i vga' Note: You must reboot after installing a new video driver!
- Install Wine: sudo apt-get install wine # It must be at least 1.6. You can do apt-get install wine1.6 if you want. I actually recommend using aptitude, which handles dependancies better. I have also installed 'winetricks' as well, just in case I need them.
- Install Eve: Download the offline installer files ( http://community.eveonline.com/support/download/offline-installer/ ) and navigate to it with a file manager. Right click select 'Run as Wine Windows Loader'. If you can't run it, you might have to fix a permission. Graphical verison: http://i.imgur.com/Qh6D1.png
- Pick location: I chose C:\Games\CCP\EVE. (I changed Program Files (x86) to Games)
- Setup a few shell scripts.
"This is your 'no updates' shell script. I save this in ~/bin/v1" wrote: # This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"
"# This is your launcher shell script. Use it when you have updates to run. I save this in ~/bin/e1" wrote: # This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\eve.exe"
- Multibox: For multiple instances, you copy ~/bin/v1 to ~/bin/v2, and edit the file to use 'eve2' instead of 'eve1' on the command line. This can be as many as your machine can handle.
- Patch eve: After the install is complete, it will start the launcher itself. It might not launch correctly at first, and might be missing the 'login' options on the left. This is due to an SSL bug particular to Linux. Just wait for it to finish validating and patching though. If it fails, you can run the ~/bin/v1 script. When you launch eve in the future, use the v1 script.
- Launch eve: After you are patched, you can launch, and it will take awhile to launch the first time, particularly the EULA.
- Disable Captain's Quarters: Go to Settings | video Settings | uncheck 'load station environment'. You want to avoid loading Captain's Quarters. Alternately, you can just click the 'leave captain's quarters' while docked.
Here is a script that will setup 3 instances for you as well:
Quote: # Can skip this section if you have a bin directory setup and in path mkdir ~/bin PATH="${PATH}:~/bin" ; export PATH # Fix up your multibox environment, the \ does a line break for easy editing. echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v1 echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve2,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v2 echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve3,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v3 # Use this to patch when needed echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\eve.exe"' >~/bin/e1 # Make all these shell scripts executable: chmod a+x ~/bin/[ev][1-3] # FANCY, warning will match e2 and e3. echo "You can run e1 to patch, and then v1 or v2 or v3 to play without the launcher."
"Older stuff" wrote: This is stuff that has been needed in the past, you can ignore it. # this is commented out, but here if you want to test overrides, which some people have needed. apt-get install winetricks export WINEDLLOVERRIDES="msvcr100,msvcr90,msvcr80=n,b;msvcrt=b,n" #/usr/bin/aoss is optional if you want to use aoss for sound echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" /usr/bin/aoss wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >bin/v1
Some use 'playonlinux', a wine front end as well. Just do apt-get install playonlinux to install it.
You should be ready to login to eve. (You are most likely still bad at playing eve though.) If you have issues on Linux, post a paste of the exact error and we'll help you out. Please include your OS (cat /etc/lsb-release), wine version (wine --version), and video card (lspci | grep -i vga).
Mine: Ubuntu 14.04 LTS, wine-1.6.2, 01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2) |

dantes inferno
Pulsar Inc. Goonswarm Federation
34
|
Posted - 2014.05.08 18:56:00 -
[2] - Quote
hax |

Viktor Konstantine
GoonWaffe Goonswarm Federation
0
|
Posted - 2014.05.17 20:18:00 -
[3] - Quote
I have everything up and running but my mouse is doing silly things in-game which is making it more or less unplayable. When I try and do something simple like click on a menu edge to resize a window, the camera will go spinning wildly and it will take a double-click on or in the window before the cursor changes and allows me to resize. Navigating in space and through the overview is very difficult as well, if not impossible. I experienced this in Wine 1.6 as well as 1.7.18.
Fresh install of Ubuntu 14.04 LTS, wine-1.7.18, NVIDIA Corporation GF114 [GeForce GTX 560 Ti] (rev a1) |

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.18 00:26:00 -
[4] - Quote
Make sure you are using the proprietary drivers, and do a full restart of X. Consider turing off the station environment together as well.
Is your load okay? Are you using too much memory? Make sure to turn down the graphics settings. If you are using too many resources, your experience can be majorly impacted. Do a 'free 'k' to see your memory use when eve is running, to make sure it's not that.
Anyway, just some ideas. |

Viktor Konstantine
GoonWaffe Goonswarm Federation
0
|
Posted - 2014.05.18 13:56:00 -
[5] - Quote
No dice on any of that I'm afraid. I was running the proprietary driver, installed via the software & updates gui, but I ran an apt-get install nvidia current and it looks like that downgraded me from 331.38 to 304. It had no effect on Eve but it seems to have hosed the resolution of my secondary display, just for fun.
Everything loads just fine, and memory usage does not seem disproportionately high. It's almost as if the game is not registering the fact that my mouse button is going back up after I press it, maybe? If I click in space, the camera will focus to where I've clicked, and then if I click again it will jump over to that location immediately. It's very strange, and it only seems to happen in Eve, everything else works normally. |

Viktor Konstantine
GoonWaffe Goonswarm Federation
0
|
Posted - 2014.05.18 15:15:00 -
[6] - Quote
Additionally, manually installing the latest Nvidia drivers, 331.67 has had no effect. Something to do with Wine, maybe...? I've never used it before so I'm completely lost with troubleshooting it. |

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.19 13:27:00 -
[7] - Quote
Try running winecfg, and attempt the 'Graphics | capture the mouse in full-screen windows' and see if it's any different. There are a couple different checkboxes ([ ] checkbox) in there to try out.
I have never heard of this, but maybe a search on the more serious WINE forums could shed some light? |

Mikail Thiesant
Sigin-tarag Anoikis Ronin
2
|
Posted - 2014.05.19 19:23:00 -
[8] - Quote
Viktor Konstantine wrote:It's almost as if the game is not registering the fact that my mouse button is going back up after I press it, maybe? If I click in space, the camera will focus to where I've clicked, and then if I click again it will jump over to that location immediately. It's very strange, and it only seems to happen in Eve, everything else works normally.
This sounds to me as the ALT+TAB problem. Few short topics on this issue here and here Basically the control keys (ALT, CTRL, some report TAB too) are being registered as pressed when you alt tab (or ctrl+alt+-> to another desktop). So you need to press them once again to cancel that.
Hope it helps. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.27 08:16:00 -
[9] - Quote
First question: How do I get to the console?
Also, how do I bring up Help? |

Torgeir Hekard
I MYSELF AND ME
45
|
Posted - 2014.05.27 09:45:00 -
[10] - Quote
Learned Vagrant wrote:First question: How do I get to the console? In an innumerable kind of ways. Personally I get to console via ALT+~ courtesy of yakuake. Technically the most universal way to get to console would probably be ALT+CTRL+F1(-F8), but that would be too console for everyday use. Probably you'd want to find something terminal something somewhere among the applications installed.
Learned Vagrant wrote: Also, how do I bring up Help?
man. man man for starers. But you'd want to start with google. |
|

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.27 14:28:00 -
[11] - Quote
Learned Vagrant wrote:First question: How do I get to the console?
Also, how do I bring up Help?
Control-alt-T is my personal favorite shortcut, in most windows managers. But going to the 'start' button in the upper corners and going to system terminal is another way.
And for help, I also back the 'google' thing. there are youtube videos out there that walk you through most linux things. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.27 15:17:00 -
[12] - Quote
Cool. Thanks.
|

Delmond Conagher
The Versa-Ex Industries
0
|
Posted - 2014.05.27 17:37:00 -
[13] - Quote
Quote:This is your 'no updates' shell script. I save this in ~/bin/v1 Do you mean /bin and not ~/bin or I do not understand something? |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.27 18:33:00 -
[14] - Quote
Ok. I'm using Sakura as the terminal (It was the first package I saw that sid 'Terminal')
I guess I didn't understand everything about updating the video drivers. I have a Radeon HD 4600. I tried replacing nvidia with radeon and the response was that it couldn't find radeon or current. Now that I think of it, i left out the '-'. However, when I looked in the directory you mention thathad your nvidia driver in it, I don't have anything. How do I get something like the Radeon driver in there. I know that's not very clear, but I can't see your post now.
Speaking of video, I have two monitors. Right now they both show the same thing. How do I extend one into the other? It would help to be able to look at your post and have another screen to follow the directions on.
I did get Wine installed successfully.
Also, how do I create a script?
I've already got Eve installed on the other Hard drive, which I can see, It's in C:\Program Files\CCP\Eve\. I noticed that, in the script, you put in a path like that. Do I need to do anything special to tell Ubuntu that is drive C:? It's just listed as '80 Gig' now. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.28 01:29:00 -
[15] - Quote
Now I'm irate!
Everything was going fine. I was just waiting for answers to my questions, the I got a message that said I needed to re-boot. So I did, and that killed Ubuntu. I got the log in screen and logged in just fine. After that, nothing happened. No disk activity. Nothing.
So i put the install CD back in and re-started. Same thing. It started an install and then just stopped on the same page.
At that point I wasn't too upset because I wanted to increase the size of the Linux partition any way. So I used an app to delete the partition, recreated it and formatted it with NTFS in preparation for changing the size. A reboot is required after that.
Now, no matter what I do I get stuck at the GRUB Rescue prompt, and I don't know how to get out of it. It doesn't recognize any of the commands I type, like stop, exit, quit.
I'm wondering how bad off I am. I found a spare HD and installed XP on it so I could get on the net and look for help. Can I exit Grub rescue somehow and boot into XP?
If I can't do that I'm going to have to play musical BIOS, then remove all partitions from those two HDs, so essentially I lose my XP setup. There's nothing left of the Ubuntu install except the Grub installation on the primary HD, so that's no loss.
But during all of this I haven't come an inch closer to finding out whether I can get around the server connection problem or not.
      |

Torgeir Hekard
I MYSELF AND ME
45
|
Posted - 2014.05.28 02:22:00 -
[16] - Quote
Oh dog wat done...
Okay, booting for dummies:
1) BIOS looks at the list of possible boot drives it was given and finds the first drive from that that has a working boot sector. 2) BIOS executes the boot code in MBR of that drive. 3) The boot code loads whatever it wants.
In the case of XP it searches for ntldr on the active boot partition, loads that, loads boot.ini and whatever. Does not matter.
In the case of GRUB, it's a multi-stageloader (well, ntldr is multi-stage too, because x86 architecture limitations). BIOS launches Stage 1 in the MBR, Stage 1 bootstraps Stage 1,5 located in the first 30kb after MBR (sectors 1-63 are normally unused on MBR drives). Stage 1.5 contains filesystem drivers that it can use to find the /boot partition, read configuration, find kernel e.t.c.
The important part here is, whenever something asks you (or does not ask in case of windows installer) if you want to write the boot loader into the MBR it means the MBR of the first boot disk you set in BIOS. Which means it will inevitabely screw up your existing boot unless you swap the default boot disk in the BIOS before installing another OS on another drive. Which I almost always do if I want something to write the loader in MBR. Because you can always chainload another drive. Unless your boot loader just got overwritten.
IF you have an XP installation you can try to boot from XP installation disk and do fixboot and fixmbr from rescue console. IF you want to chainload ntldr from grub, then you have to know where is the boot partition for XP. You do something like root (hd2,0) chainloader (hd2,0)+1 Or the like. Depends on where is your XP. You are limited to rrescue boot for a while until your fix your grub though. Also, this one launched from ubuntu live CD unscrewed my EFI boot once, might help you too. But unlikely if you deleted your /boot partition. https://help.ubuntu.com/community/Boot-Repair
PS: 1) You will have interesting times with HD4600 series. It's considered legacy by AMD, so catalyst (fglrx driver) may not work, and you might be left with open-source drivers (though i heard they work rather well these days). 2) Healing headaches with a guillotine might sound as a working idea but not necessarily the best one. Next time try less severe methods than doing complete re-install. Start with pressing ALT+CTRL+F1 for example. Then login, do sudo apt-get install links and you get internets in console (if your network is up, that is). 3) If you don't know whatyou are doing, don't install a new and unfamiliar OS on the only computer with an internet connection. |

Neuntausendeins
GoonWaffe Goonswarm Federation
19
|
Posted - 2014.05.28 02:36:00 -
[17] - Quote
Also keep in mind, that linux does not use NTFS as a file system. Most distributions can read and write NTFS without issue these days, but you should not try to use it for any kind of system partition unless you have a very good reason to. Use Ext4 instead.
Also try to use the resources already available on the net instead of asking about non Eve specific issues here. The ubuntu forums and ubuntu wiki are a much better source of information.
You can find the official documentation and wiki here: https://help.ubuntu.com/ Ubuntu Forum: http://ubuntuforums.org/
Look here for your video-card issues: https://help.ubuntu.com/community/RadeonDriver
And next time your system stops working, don't panic and flatten it right away. This is not windows, you can probably fix it. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.28 10:41:00 -
[18] - Quote
I haven't done anything to the hard drive that has Grub on it. It was my primary and Ubuntu was installed in a partition on the secondary.
So far I have a nearly working fres XP install on one HD, A working fresh Ubuntu install on another HD, and the one with Grub and my old XP install is just laying on the desk sunning itself.
I shot myself in the foot again on the new XP install. I keep my password database on a flash drive, and decided to move it to a larger flash drive today. Note I said move. I could kill myself for that. That database has the keys for my driver updaters, but I can't get to it because I need a driver updated. What an idiot. It's not like I don't have any more flash drives. I just got lazy and didn't back it up today. A case of one strike and I'm out. But I did find an old version of the database the has the keys for a bunch of driver updaters, so maybe I can still get to the point where I can read that flash drive.
For more lessons on what not to do, just let me know what YOU are going to try next.  |

Neuntausendeins
GoonWaffe Goonswarm Federation
19
|
Posted - 2014.05.28 11:02:00 -
[19] - Quote
These sure are some issues you have there, dude. |

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.28 12:29:00 -
[20] - Quote
Delmond Conagher: ~/bin/v1 means my home directory slash bin slash v1. So in my case: /home/kismeteer/bin/v1 I use that notation so it's in your path next time you login.
Learned Vagrant: Video drivers are particular to your card. If you have a Radeon, that's an AMD card, NOT an nvidia card. You installed the wrong drivers, dude.
For help with your particular video driver, go to google and type 'linux Radeon HD 4600' or whatever your card is. This is the only way to use two monitors.
You can create a script with the commands I gave you above, under "Here is a script that will setup 3 instances for you as well:" Just paste all the stuff in that quote and you're set.
If yo'ure going to run from another drive, you have to find the full path to it after mounting it.
Your computer screen failed to load because you put the wrong video drivers, I suspect. Gparted is very good at expanding partitions.
It is a VERY good idea to install Ubuntu your first time to a hard drive you do'nt care about losing. 'Just in case'. It's a lesson in pain to understand how MBRs and GP's work.
Anyway, be careful Learned Vagrant. Sounds like you're messing with fire. |
|

Torgeir Hekard
I MYSELF AND ME
45
|
Posted - 2014.05.28 12:39:00 -
[21] - Quote
Kismeteer wrote: Learned Vagrant: Video drivers are particular to your card. If you have a Radeon, that's an AMD card, NOT an nvidia card. You installed the wrong drivers, dude..
Errm. I assume he didn't install anything.
Sounds like he took your post and changed nvidia-current to radeon-current. Obviously it didn't work. Because proprietary AMD drivers (which most likely will not work with the now-legacy HD46XX) are called fglrx.
Also. You can do apt-cache search radeon and see what randeon-related stuff you have in repos.
Also also. I believe, Ubuntu had some kind of easy driver selection for proprietary drivers, but I don't remember where it is or how it's called. |

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.28 12:48:00 -
[22] - Quote
Torgeir Hekard wrote:Errm. I assume he didn't install anything.
Yeah, I don't know what was up with that. I put in the OP how to figure out which video driver to use. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.29 02:15:00 -
[23] - Quote
I installed it on the secondary, which didn't have anything in the Windows partition. Little did I know that Grub would end up on the primary.
The database is un-recoverable. That's going to cost me several hundred dollars. Oh well.
Naturally, I blame the whole thing on CCP. I played for 4 years and never had a single problem with the launcher, or logging in. I subscribed because I just wanted to see what is different. I had no idea that it would become such a problem.
I think it would be best if I took this back to the thread I originally started. I don't want to mess up your very good tutorial.
My goal for the evening is to see if I can figure out how to D/L the latest stable version of Wine. ( I hope it is like real wine, and has gotten better over time. ) |

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.05.29 17:38:00 -
[24] - Quote
I am not sure how your data is unrecoverable.
Download testdisk ( http://www.cgsecurity.org/wiki/TestDisk ) and you can recover most anything, even if you blew up the MBR. Unless you formatted over the windows partition. Besides, I don't think a lost password should be the end of the world.
Installing linux is best done on a stand alone system or a VM until you get the hang of it. Or have amazing backups. If you stray from either of these points, you are in for a world of hurt.
Also, I prefer Ubuntu because it is the largest distro out there that is 100% free. CentOS is the only other consideration, and that's in an odd place due to its relationship to Red Hat. |

Learned Vagrant
Veerhouven Ventures
5
|
Posted - 2014.05.29 18:30:00 -
[25] - Quote
I've got everything up and running except for the database. What happened with that was that I had it on a flash drive, and updated it every day, What happened was that I moved it to a larger flash disk. Please note that I 'moved' it rather than copying it. The larger flash drive worked fine until I had to rebuild the computer. Now it doesn't recognize that flash disk. I've tried numerous data recovery programs on both of them, but none of them produced a readable file.
That's important to me because I had all of my software keys in it as well as passwords. Now I will have to pay for the software again. Lesson learned. I put the six flash disks with more than 8 Gig capacity in the trash, so that shouldn't happen again.
I'm really happy to hear from you because I'm going through your procedure again, and I have some questions, but I will post them in the other thread.
I want to thank all of you for your input. I've learned a lot, but still have a long way to go. The longer I use Linux the better it looks, but, at 64, I wasn't planning to have to make a fundamental change in OSes before I died. Then Mickeysoft got involved.
Edit: I did some research on Wine last night and read that Wine 1.62 is the last version, of Wine. Apparently they changed the name for the next generation. It also sounds like they have changed focus a little. |

Learned Vagrant
Veerhouven Ventures
6
|
Posted - 2014.05.31 09:23:00 -
[26] - Quote
Ok. I downloaded the Offline install packages. Oddly enough they ended up in the Downloads directory. But I don't think you mentioned what I need to do with them. Do I have to be inside Wine to unpack them? |

eug3nio Anninen
School of Applied Knowledge Caldari State
0
|
Posted - 2014.06.06 15:30:00 -
[27] - Quote
Viktor Konstantine wrote:I have everything up and running but my mouse is doing silly things in-game which is making it more or less unplayable. When I try and do something simple like click on a menu edge to resize a window, the camera will go spinning wildly and it will take a double-click on or in the window before the cursor changes and allows me to resize. Navigating in space and through the overview is very difficult as well, if not impossible. I experienced this in Wine 1.6 as well as 1.7.18.
Fresh install of Ubuntu 14.04 LTS, wine-1.7.18, NVIDIA Corporation GF114 [GeForce GTX 560 Ti] (rev a1)
got the same conf here .........( but with a GTX 660 TI , ndb LOL) no problem at all , ......nor the ones you experiencing ,
strange.......
eug3nio |

Pretzel Spark
Perkone Caldari State
0
|
Posted - 2014.06.07 05:10:00 -
[28] - Quote
Alright, I've set up the script and got it working all fine - except I have two monitors, and the script starts up eve in the wrong monitor, which has a completely different resolution.
I've tried adjusting it to
Quote:# This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.1" wine explorer /desktop=eve1,1920x1080 "C:\Program Files (x86)\CCP\EVE\bin\exefile.exe"
But this doesn't work:
Quote:spark@spark-blue:~$ bash eve/v1 fixme:heap:HeapSetInformation 0x490000 0 0x33fd14 4 fixme:heap:HeapSetInformation (nil) 1 (nil) 0 Network layer using: CarbonIO fixme:heap:HeapSetInformation 0x490000 0 0x3386b4 4 Executing DirectXRedist.exe ... err:setupapi:do_file_copyW Unsupported style(s) 0x144 Terminating process by request - returning 0spark@spark-blue:~$
Any hints to get it working?
|

Kismeteer
GoonWaffe Goonswarm Federation
611
|
Posted - 2014.06.09 16:06:00 -
[29] - Quote
Pretzel Spark wrote:Quote:# This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.1" wine explorer /desktop=eve1,1920x1080 "C:\Program Files (x86)\CCP\EVE\bin\exefile.exe" Any hints to get it working?
Try changing 'DISPLAY=":0.1" to DISPLAY=":0.0". That .0 should hopefully be your primary monitor. Or temporarily drop the res until you get it sorted.
I actually use an environment variable. GEO=1024x768 /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.1" wine explorer /desktop=eve1,${GEO} "C:\Program Files (x86)\CCP\EVE\bin\exefile.exe" |

Rashnu Gorbani
Federal Navy Academy Gallente Federation
26
|
Posted - 2014.06.22 15:41:00 -
[30] - Quote
I did install ubuntu 14.04 yesterday and tried eve to be able to change a skill without rebooting in windows but it doesn't work.
$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=14.04 DISTRIB_CODENAME=trusty DISTRIB_DESCRIPTION="Ubuntu 14.04 LTS"
$ wine --version wine-1.6.2
$ lspci | grep -i vga 01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Juniper XT [Radeon HD 6770]
Running your v1 script opens a small windows desktop in a window with an Eve icon on it. That's all. Console says:
-- $ ./v1 err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\A35F_hh.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\A35F_hh.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\A35F_hh.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\4137_winhlp32.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\4137_winhlp32.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\4137_winhlp32.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\4137_winhlp32.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7765_winebrowser.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\1E64_notepad.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\1E64_notepad.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\1E64_notepad.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\1E64_notepad.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\256x256\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\48x48\\apps\\7596_iexplore.0.png" err:menubuilder:convert_to_native_icon error 0x80070005 creating output file L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\32x32\\apps\\7596_iexplore.0.png"
-- well, can't pastre more of this crap... no other errors. |
|

Kismeteer
GoonWaffe Goonswarm Federation
612
|
Posted - 2014.06.23 22:35:00 -
[31] - Quote
0x80070005 is an access denied message from windows. I believe it is unable to write a file.
Can you see if you can find this particular file? L"Z:\\home\\bencze\\.local\\share\\icons\\hicolor\\16x16\\apps\\A35F_hh.0.png
I have this file! user@machine:~/.local/share/icons/hicolor/16x16/apps$ ls -l A35F_hh.0.png -rw-rw-r-- 1 user user 605 Jun 23 14:23 A35F_hh.0.png
Do: ls -l ~/.local/share/icons/hicolor/16x16/apps/A35F_hh.0.png
And then make sure you own the entire directory tree: (for instance, if one time you ran it as root, this is bad.) sudo chown -R ${USER} ~/.local/
|

Katrina Bekers
Rim Collection RC Sorry We're In Your Space Eh
213
|
Posted - 2014.07.23 09:13:00 -
[32] - Quote
A quick report to confirm 14.04 LTS, WINE (1.7.22) and EVE works like a charm, here too.
I recently rebuilt my rig (all but the GTX560Ti is mint new) to try 14.04, without a single hiccup worth of mentioning.
Often a new hotfix/patch requires a quick pass of repair.exe, but yesterday it installed Crius thru the Launcher without a problem. << THE RABBLE BRIGADE >> |

Lannius Platoinnes
Center for Advanced Studies Gallente Federation
2
|
Posted - 2014.07.30 09:01:00 -
[33] - Quote
"other lesser distros", pwwwwhahah. Your fanboy is showing a tiny bit.
That being said, I must say, I would very much like some EVE on my linux machine. Did you guys try running the steam version of EvE on this? Because I presume you are talking about the vanilla client. |

After Shok
Ruthenia Co
463
|
Posted - 2014.07.30 17:51:00 -
[34] - Quote
Pretzel Spark wrote: Network layer using: CarbonIO
Use search - https://forums.eveonline.com/default.aspx?g=search&search=CarbonIO&forumID=274 You need install 32 bit libs video drivers -ƒ-Ç-¦-¦-¦-+-¦ -+-¦-+-î-+-Å -+-ü-¦-+-Ç-¦-+-é-î, -â-¦-¦-¦-¦-¦-+-ï-¦ -¦-¦-¦-+-¦-¦-é! -ó-+-é -ü-¦-+-ï-¦ -£-Ä-+-à-¦-¦-â-+-¦-+ |

Neuntausend
GoonWaffe Goonswarm Federation
90
|
Posted - 2014.07.31 13:20:00 -
[35] - Quote
I haven't tried it myself, but Win32 Steam itself works well (with dwrite disabled) and so does Eve. Just give it a go, and report back. You may have to disable the Steam Overlay, but apart from that, I don't see why the Steam version shouldn't work. |

Lothras Andastar
Associated North American Lovers of Dolphins
47
|
Posted - 2014.08.04 06:53:00 -
[36] - Quote
Lesser Distros? Surely you Jest! Ubuntu hasn't been "good" for years.
Back on Topic, how is the performance hit from using Wine nowadays? I currently run two clients flawlessly on Windows, but I am thinking of migrating back to Linux and it's really only EVE that is holding me back. Because the Legacy Code has too much Psssssssssssssssh, nothing will ever get fixed until CCP stop wasting money on failed sparkle MMOs and instead rewrite the entire backend of EvE from scratch. |

Kismeteer
GoonWaffe Goonswarm Federation
613
|
Posted - 2014.08.06 20:41:00 -
[37] - Quote
Lothras Andastar wrote:Lesser Distros? Surely you Jest! Ubuntu hasn't been "good" for years.
Back on Topic, how is the performance hit from using Wine nowadays? I currently run two clients flawlessly on Windows, but I am thinking of migrating back to Linux and it's really only EVE that is holding me back.
It runs fine on Linux, but does have it own set of issues. I can run two clients fine as long I have the memory needed available. I still think that the windows drivers are better and you might be able to run more clients under windows due to that.
You can most likely do a boot cd and try it, honestly.
Also, sup man. Welcome back. |

Noden Vorpalstar
The Knights of Polaris
349
|
Posted - 2014.08.13 02:48:00 -
[38] - Quote
Hi, I'm brand new to Linux, I've been using it less than a week and still learning.
You're guide has been very helpful with getting EVE installed, and for a few days all seemed to run pretty good. Today though not so much, and I think it may have to do with me skipping the following steps.
I am honestly confused on what to do here, what exactly a shell script is, and what this is for. My first guess was it will allow me to get updates to my EVE client.
Any help is greatly appreciated.
I am running Ubuntu 14.04 LTS, and Wine.
Kismeteer wrote:Setup a few shell scripts."This is your 'no updates' shell script. I save this in ~/bin/v1" wrote: # This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"
"# This is your launcher shell script. Use it when you have updates to run. I save this in ~/bin/e1" wrote: # This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\eve.exe"
Multibox: For multiple instances, you copy ~/bin/v1 to ~/bin/v2, and edit the file to use 'eve2' instead of 'eve1' on the command line. This can be as many as your machine can handle.
Patch eve: After the install is complete, it will start the launcher itself. It might not launch correctly at first, and might be missing the 'login' options on the left. This is due to an SSL bug particular to Linux. Just wait for it to finish validating and patching though. If it fails, you can run the ~/bin/v1 script. When you launch eve in the future, use the v1 script.
Launch eve: After you are patched, you can launch, and it will take awhile to launch the first time, particularly the EULA.
Disable Captain's Quarters: Go to Settings | video Settings | uncheck 'load station environment'. You want to avoid loading Captain's Quarters. Alternately, you can just click the 'leave captain's quarters' while docked.[/list]
Here is a script that will setup 3 instances for you as well: Quote: # Can skip this section if you have a bin directory setup and in path mkdir ~/bin PATH="${PATH}:~/bin" ; export PATH # Fix up your multibox environment, the \ does a line break for easy editing. echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v1 echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve2,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v2 echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve3,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >~/bin/v3 # Use this to patch when needed echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\eve.exe"' >~/bin/e1 # Make all these shell scripts executable: chmod a+x ~/bin/[ev][1-3] # FANCY, warning will match e2 and e3. echo "You can run e1 to patch, and then v1 or v2 or v3 to play without the launcher."
"Older stuff" wrote: This is stuff that has been needed in the past, you can ignore it. # this is commented out, but here if you want to test overrides, which some people have needed. apt-get install winetricks export WINEDLLOVERRIDES="msvcr100,msvcr90,msvcr80=n,b;msvcrt=b,n" #/usr/bin/aoss is optional if you want to use aoss for sound echo '/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" /usr/bin/aoss wine explorer \ /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"' >bin/v1
Some use 'playonlinux', a wine front end as well. Just do apt-get install playonlinux to install it.
You should be ready to login to eve. (You are most likely still bad at playing eve though.) If you have issues on Linux, post a paste of the exact error and we'll help you out. Please include your OS (cat /etc/lsb-release), wine version (wine --version), and video card (lspci | grep -i vga). Mine: Ubuntu 14.04 LTS, wine-1.6.2, 01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2)
Public Channel:-á Polaris-Public Roleplaying Channel: -áGallente Lounge
|

Neuntausend
GoonWaffe Goonswarm Federation
100
|
Posted - 2014.08.13 05:43:00 -
[39] - Quote
Those scripts are definitely not needed, but it is a lot more convenient to have some kind of script to launch the game. In any case, you should tell us, what exactly is not working. Just from "It's not working" I could as well gather that there's a power outage, your computer is not running and you are posting this from a mobile phone. ;)
Please start Eve from a terminal, typing something like this:
WINEDEBUG=-all wine "/path/to/eve.exe"
and/or
WINEDEBUG=-all wine "/path/to/exefile.exe"
And copy/paste the output. |

Noden Vorpalstar
The Knights of Polaris
349
|
Posted - 2014.08.14 01:36:00 -
[40] - Quote
Neuntausend wrote:Those scripts are definitely not needed, but it is a lot more convenient to have some kind of script to launch the game. In any case, you should tell us, what exactly is not working. Just from "It's not working" I could as well gather that there's a power outage, your computer is not running and you are posting this from a mobile phone. ;)
Please start Eve from a terminal, typing something like this:
WINEDEBUG=-all wine "/path/to/eve.exe"
and/or
WINEDEBUG=-all wine "/path/to/exefile.exe"
And copy/paste the output.
Hi. You're right I should have been more a little more specific on the problem.
One problem is the launcher does not always load completely. Images not showing, User Name and Password fields missing. Please note this is not all the time, it is just most of the time.
Second, because of this it is hard to tell if the game is updating or not.
As requested the following is the out put to WINEDEBUG on my computer.
william@Vorpalstar:~$ WINEDEBUG=-all wine "C:\Games\CCP\EVE\eve.exe" william@Vorpalstar:~$ 21:29:30: Debug: src/helpers.cpp(140): 'CreateActCtx' failed with error 0x00000103 (no more data available.). [0813/212930:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
Public Channel:-á Polaris-Public Roleplaying Channel: -áGallente Lounge
|
|

Neuntausend
GoonWaffe Goonswarm Federation
109
|
Posted - 2014.08.14 02:11:24 -
[41] - Quote
So I suppose the game itself works then? You can skip the launcher by running exefile.exe directly, if the launcher acts up. It resides inside the bin/ folder in the eve directory. That way you will only have to run the launcher every once in a while to update the game.
As for the launcher issues themselves - issues like that have been very common with older wine versions (<1.6) and the launcher is still a piece of crap and acts up every now and then, even on current wine versions. I can't really guess why it's not working for you. If you followed Kismeteers guide, it shouldn't act up all that often. The only thing I can suggest is that you make sure you don't have anything weird installed in your wine prefix and that there are no dll overrides in winecfg. From my experience it's a good idea to have Eve in a clean wine prefix for itself with no other windows software installed in it. You could also try deleting your launcher cache which I believe resides in Eve/launcher/cache, but that's just another shot in the dark. Besides that, no idea right now, sorry.
Oh and by the way, by setting WINEDEBUG=-all, you actually remove most debugging information instead of adding it (note that you don't actually "run" WINEDEBUG, as it's not a script or program. You merely set a variable by that name to "-all" - read: "minus all"). I like to do that, because wine more often than not just spams hundreds of "fixme:" messages that may be useful for wine developers, but usually don't contain anything useful for us mere mortals and make the output bigger and harder to read. Sadly your output doesn't show anything obvious like I sorta hoped it would (it usually does). You are however getting "'CreateActCtx' failed" and I can't check if I am getting it as well, as I am not in reach of my linux machine right now, but I don't think it's related. |

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.08.14 16:40:49 -
[42] - Quote
Run the v1 script instead of the e1 script. e1 is the launcher script, v1 runs eve without the launcher. The Launcher is very inconsistent due to an SSL bug in wine pre 1.7.
e1 script start the launcher and it has a bar at the bottom that goes yellow, and says 'ready' when it's done patching. Once that is done, you can CLOSE the launcher and do the v1 script.
I suspect your problem is with your graphics driver. Do you have an nvidia? If you do: Go to the Ubuntu settings | System | Software & Updates | Additional Drivers | Use NVIDIA binary driver (I'm using 331.38) |

Torgeir Hekard
I MYSELF AND ME
78
|
Posted - 2014.08.18 06:56:48 -
[43] - Quote
Noden Vorpalstar wrote: Hi. You're right I should have been more a little more specific on the problem.
One problem is the launcher does not always load completely. Images not showing, User Name and Password fields missing. Please note this is not all the time, it is just most of the time.
wine --version please |

Trefort
Facta Non Verba
0
|
Posted - 2014.08.20 07:07:07 -
[44] - Quote
I ve been trying to get eve working since the crius release. I have 2 computers, one is working fine, the other - my gaming rig ofc - does not. Both have the same Ubuntu installed 14.04.1 LTS, same wine, same nvidia drivers. One of them has an older nvidia card ( GT240 i think ) which is working fine
The one i have problem with: Ubuntu 14.04.1 LTS 01:00.0 VGA compatible controller: NVIDIA Corporation GF116 [GeForce GTX 550 Ti] (rev a1) wine-1.7.24
Last time i tried a complete reinstall of both the system and eve - purged the directories - to no effect.
The problem is: login is working both from the launcher and the direct method through the eve exefile.exe, character selection screen appears, but when i select a character the overview shows for a second and after that the screen goes black. When i terminate the process this is what error it gives:
X Error of failed request: BadWindow (invalid Window parameter) Major opcode of failed request: 38 (X_QueryPointer) Resource id in failed request: 0x4e0000a Serial number of failed request: 6201 Current serial number in output stream: 6201
Any ideas, suggestions? Thanx
|

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.08.20 16:13:42 -
[45] - Quote
Trefort wrote:The problem is: login is working both from the launcher and the direct method through the eve exefile.exe, character selection screen appears, but when i select a character the overview shows for a second and after that the screen goes black. When i terminate the process this is what error it gives:
X Error of failed request: BadWindow (invalid Window parameter) Major opcode of failed request: 38 (X_QueryPointer) Resource id in failed request: 0x4e0000a Serial number of failed request: 6201 Current serial number in output stream: 6201
Googling this error implies it is a driver error. Reinstall the proprietary driver.
Generally, I would like to see the results of: lsmod | grep nvidia glxinfo | grep -i vga # you already did this nvidia-settings |

Kismeteer
GoonWaffe Goonswarm Federation
615
|
Posted - 2014.08.20 16:23:00 -
[46] - Quote
BTW, under nvidia-settings, I really just want to see the NVIDIA driver version. I'm currently running 331.38, for instance.
I will update the head article to include this. |

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.08.20 16:23:34 -
[47] - Quote
BTW, under nvidia-settings, I really just want to see the NVIDIA driver version. I'm currently running 331.38, for instance.
I will update the head article to include this.
edit: included in OP. Also, make sure you turn off Captains quarters, it can do ... unexpected things. |

Trefort
Facta Non Verba
0
|
Posted - 2014.08.24 14:06:09 -
[48] - Quote
The last 2 days i was trying everything i can think of:
installed the properiarty driver for nvidia - no change tried all of the drivers i can find on the nvidia website - even the beta ones - still no success i wiped wine and installed the 1.6 version and eve again and tried all the dirvers - still no luck
What fixed it that i changed the port on which through the client connnects to the eve servers. Funny thing is that this was the first thing i did when i got the blank screen ingame and at that time it did not work. Im guessing that my problem is/was ISP related 
My system now : Ubuntu 14.04.1 LTS 01:00.0 VGA compatible controller: NVIDIA Corporation GF116 [GeForce GTX 550 Ti] (rev a1) wine-1.7.24 Nvidia driver: 331.38 Proprietary
|

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.08.25 17:13:48 -
[49] - Quote
Trefort wrote:Im guessing that my problem is/was ISP related 
This sucks. `8r/ I'm really sorry to hear that. That really shouldn't happen. You might consider getting a bug report into CCP's systems.
Then again, new patch gets deployed tomorrow, so they might be a bit busy. (Set a long skill now!)
|

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.09.17 16:31:41 -
[50] - Quote
There was an issue on 2014/09/02 concerning the launcher failing to work properly, which was fixed. So thanks to CCP for paying attention to the oddball operating systems. Those of us skipping the launcher didn't even notice, though.
A reminder that it would be good to have multiple testers for upcoming releases. These releases are coming much quicker in succession, so getting a lot less time in front the player base. This makes Linux testing more important. This is especially true with major graphic changes like the new decloaking effect.
I will be testing the latest one with my system specs a couple days before they go live. If anyone else does some testing, I would be interesting in hear your feedback as well. |
|

Kismeteer
GoonWaffe Goonswarm Federation
744
|
Posted - 2014.10.17 18:46:12 -
[51] - Quote
Once again, need testers to run the sisi client before the release in the near future. I ran it recently, worked fine. Wine 1.6.2, ubuntu 14.04.1 |

Cassandra Skjem
Republic University Minmatar Republic
0
|
Posted - 2014.10.19 15:28:48 -
[52] - Quote
Kismeteer wrote:
Note: My shell scripts use 'e1' as eve with launcher, and 'v1' without launcher. The launcher is slow and unreliable on Linux, but necessary to patch. This is due to an SSL bug associated with wine.
Using the repair.exe file (double click on it in Ubuntu 14.04 LTS) when you have WINE installed already from the file browser will effectively patch the client without using the launcher, is much quicker, and more reliable because as you say the launcher has a tendency to error out in Ubuntu.
It can be found in: ~/CCP/Eve/repair.exe |

Cassandra Skjem
Republic University Minmatar Republic
0
|
Posted - 2014.10.19 16:01:14 -
[53] - Quote
Torgeir Hekard wrote:Kismeteer wrote: Learned Vagrant: Video drivers are particular to your card. If you have a Radeon, that's an AMD card, NOT an nvidia card. You installed the wrong drivers, dude..
Errm. I assume he didn't install anything. Sounds like he took your post and changed nvidia-current to radeon-current. Obviously it didn't work. Because proprietary AMD drivers (which most likely will not work with the now-legacy HD46XX) are called fglrx. Also. You can do apt-cache search radeon and see what randeon-related stuff you have in repos. Also also. I believe, Ubuntu had some kind of easy driver selection for proprietary drivers, but I don't remember where it is or how it's called. For anyone having any issues with the proprietary drivers I suggest falling back to the X.org drivers which are quite good and require no tweaking usually to make Eve work. Some glitches may occur with various lighting effects but overall they should work well. |

Cassandra Skjem
Republic University Minmatar Republic
0
|
Posted - 2014.10.19 21:08:16 -
[54] - Quote
Trefort wrote:The last 2 days i was trying everything i can think of: installed the properiarty driver for nvidia - no change tried all of the drivers i can find on the nvidia website - even the beta ones - still no success i wiped wine and installed the 1.6 version and eve again and tried all the dirvers - still no luck What fixed it that i changed the port on which through the client connnects to the eve servers. Funny thing is that this was the first thing i did when i got the blank screen ingame and at that time it did not work. Im guessing that my problem is/was ISP related  My system now : Ubuntu 14.04.1 LTS 01:00.0 VGA compatible controller: NVIDIA Corporation GF116 [GeForce GTX 550 Ti] (rev a1) wine-1.7.24 Nvidia driver: 331.38 Proprietary Install the X.org X drivers to fix this issue. Then reinstall wine. |

George Kolman
The Scope Gallente Federation
0
|
Posted - 2014.10.23 10:24:08 -
[55] - Quote
I am able to install everything but unable to get the exefile.exe to run is there any fix for this the launcher runs fine just thought id ask.
Thanks George Kolman |

Kismeteer
GoonWaffe Goonswarm Federation
745
|
Posted - 2014.10.24 12:56:14 -
[56] - Quote
George Kolman wrote:I am able to install everything but unable to get the exefile.exe to run is there any fix for this the launcher runs fine just thought id ask.
Thanks George Kolman
whoa whoa whoa, no need to sign your posts! We know who you are!
Did you wait for the launcher to patch eve? You should be able to just launch eve from the launcher if that is workign fine. If the patching doesn't complete, that can leave you in an uncertain state.
What happens when you try to run exefile.exe? Do you get an error message of any kind?
Also, please provide the following: lspci -v | grep -i vga video card wine --version uname -v |

Jenshae Chiroptera
500
|
Posted - 2014.10.31 14:24:44 -
[57] - Quote
PlayOnLinux made it easy to install.
Few glitches that seem to be mentioned in OP. 32 bit, Ubuntu 14.04, 3GHz dual core, 4GB RAM, 1GB GT 630 Nvidiot card - little lag - with everything off or low where possible. 64 bit, Ubuntu 14.04, 4.1GHz quad core, 8GB RAM, 2GB GT 630 Nvidiot card - no lag - everything on and max.
Ideas & stuff
EVE - the game of sand castles, either building them or kicking them down. -á
Status: Taking a break
|

scruff decima
Large Collidable Object.
20
|
Posted - 2014.11.01 15:05:57 -
[58] - Quote
Running surprisingly well with Ubuntu 14.04.1 (awesome WM, wine-1.6.2), Radeon HD 5770, 8GB ram, quad-core @ 2.80GHz.
I get 50fps while orbiting station with fglrx drivers. I think the performance from the OS drivers might have actually been better. No glitches or bugs so far. We'll see how it copes in large fleets.
Thanks for the guide. |

Kismeteer
GoonWaffe Goonswarm Federation
751
|
Posted - 2014.11.03 19:04:01 -
[59] - Quote
Jenshae Chiroptera wrote:P.S. Could you explain your two scripts a bit? I don't know if they would help or hinder at this point.
Sure, I can give a play by play on them: /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1 ,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"
I'm setting my WINEPREFIX variable to the correct place I'm setting my display to my local window I'm starting wine to start explorer That explorer has the option /desktop=eve1 to make it unique, making it possible to multibox. Then finally, Wine explorer is launching the exefile which bypasses the launcher. |

Jenshae Chiroptera
511
|
Posted - 2014.11.12 02:43:46 -
[60] - Quote
Thank you.
Ideas & stuff
EVE - the game of sand castles, either building them or kicking them down. -á
Status: Taking a break
|
|

scruff decima
Large Collidable Object.
20
|
Posted - 2014.11.14 19:06:59 -
[61] - Quote
Might be useful for others to know. To get on to the test server I did the following:
Copied my eve folder:
cd .wine/drive_c/Games/CCP/ cp -r EVE/ EVE_TEST
Copied the launcher script and modified it to this (changed to EVE_TEST and added /server argument):
/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE_TEST\eve.exe" /server:Singularity
Copied the exe file script and modified it to this:
/usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1920x1080 "C:\Games\CCP\EVE_TEST\bin\exefile.exe" /server:Singularity
Run the modified launcher script to download the latest singularity changes, then run the game with the modified exe script |

Kismeteer
GoonWaffe Goonswarm Federation
753
|
Posted - 2014.12.08 19:18:34 -
[62] - Quote
Rhea comes out tomorrow, so just did some last minute sanity checking.
Just posting in this thread that I patched sisi, and the launcher 'play' button disappeared after I logged in, waited a bit, then said there was a problem with my account. However, the launcher still worked.
New icons look pretty awesome. The level of transparency on some windows seemed a little crap. New map looks goddamn amazing. My Ares honestly pretty bad at low res, but at least it is running on my crap video card.
Anyway, tomorrow should go fine. |

Kismeteer
GoonWaffe Goonswarm Federation
753
|
Posted - 2014.12.08 19:25:44 -
[63] - Quote
One other thing I fixed on Linux:
If you are using XFCE, which is a low impact Ubuntu windows manager that I recommend, your 'alt' key is commandeered to 'move' windows. This is called 'Easy Click' by them. This interferes with dragging probes in the probing window, so you have to disable easy click.
Go to the 'start' button in the upper left, go to Settings (left of the lock icon), Settings Editor (All the way at the bottom), xfwm4 (on the left, all the way at the bottom), and then find the 'easy_click' property, and uncheck the box. Done. Now, XFCE will no longer steal your alt key from your application.
I took a screen shot as well: http://i.imgur.com/vFh10si.png |

Kismeteer
GoonWaffe Goonswarm Federation
753
|
Posted - 2014.12.12 19:45:09 -
[64] - Quote
Newly experienced problem per https://forums.eveonline.com/default.aspx?g=posts&m=5299948
err:d3d:wined3d_buffer_map >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from glMapBufferRange @ buffer.c / 1038 err:d3d:wined3d_buffer_unmap >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from glFlushMappedBufferRange @ buffer.c / 1150
If you get these errors, please restart X and see if it clears up. It will make the game unplayable as well.
No known fix yet other than restart. |

Kismeteer
GoonWaffe Goonswarm Federation
755
|
Posted - 2015.01.02 18:57:05 -
[65] - Quote
New year means new computer!
Intel i7-4790 8 effective cores @3.6 GHz, 57k BogoMIPS, GTX 750 Ti 2GB, SSD hard drive, and can run 7 instances of eve now with my 8 gig of memory. (Which should be going to 16 soon.) With my previous system, only about 3 were possible. Here is how to pull these types of stats for yourself:
$ cat /proc/cpuinfo | grep GHz # count instances, i7's have double the effective cores due to hyperthreading model name: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz
$ dmesg | grep -i bogo [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.59 BogoMIPS (lpj=14367192) [ 0.157935] smpboot: Total of 8 processors activated (57468.76 BogoMIPS)
$ dmesg | grep ata | grep max [ 1.033597] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM01B6Q, max UDMA/133
$ cat /proc/meminfo | grep MemTotal MemTotal: 8080428 kB
$ lspci -v | grep -i vga 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller]) 01:00.0 VGA compatible controller: NVIDIA Corporation GM107 [GeForce GTX 750 Ti] (rev a2) (prog-if 00 [VGA controller])
$ nvidia-debugdump -l Found 1 NVIDIA devices Device ID: 0 Device name: GeForce GTX 750 Ti (*PrimaryCard) GPU internal ID: GPU-f1aa230a-4258-d1b2-7f89-cd5c1525a4ed
$ nvidia-settings # can use this to pull GPU 0's throughput
$ wine --version wine-1.6.2
$ cat /etc/os-release | grep VERSION= VERSION="14.04.1 LTS, Trusty Tahr"
And I wrote a script version if you are lazy:
OSINFO=`cat /etc/os-release | grep VERSION= | awk -F\" '{print $2}'` CPUINFO=`cat /proc/cpuinfo | grep GHz |head -1 | awk -F: '{print $2}'` BOGOINFO=`dmesg | grep -i bogo | tail -1 | awk -F\( '{print $2}' ` MEMINFO=`cat /proc/meminfo | grep MemTotal | awk -F: '{print $2}'` DISKINFO=`dmesg | grep ata1 | grep max | tail -1 | awk -F: '{print $3}' | awk -F, '{print $1}'` NVIDIAINFO=`nvidia-debugdump -l | grep name | awk -F: '{print $2}' | awk -F\( '{print $1}'` WINEINFO=`wine --version` echo "Core stats: ${OSINFO}, ${NVIDIAINFO}, ${WINEINFO}" echo "Bragging stats: ${CPUINFO}, ${BOGOINFO}, ${MEMINFO}, ${DISKINFO}"
Output of this: Core stats: 14.04.1 LTS, Trusty Tahr, GeForce GTX 750 Ti , wine-1.6.2 Bragging stats: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz, 57468.76 BogoMIPS), 8080428 kB, Samsung SSD 850 PRO 256GB
|

munkape
The Motley Crew
0
|
Posted - 2015.01.07 17:07:45 -
[66] - Quote
Hi,
EVE is running great for me on Ubuntu 14.04 but doesn't seem to be saving settings after exit.
e.g. window mode set, client plays the intro video each time and removes all icons I place. |

Kismeteer
GoonWaffe Goonswarm Federation
758
|
Posted - 2015.01.09 18:19:29 -
[67] - Quote
munkape wrote:EVE is running great for me on Ubuntu 14.04 but doesn't seem to be saving settings after exit.
e.g. window mode set, client plays the intro video each time and removes all icons I place.
Make sure you can write to your .wine directory and the drive isn't full, specifically your .wine/drive_c/users/username/Local\ Settings/Application\ Data/CCP/EVE/ directory, which is where those are stored.
I recommend you do: sudo chown -R ${USER}:${USER} ~/.wine
This does a recursive change of ownership to yourself on all your .wine directories.
Alternately, use your username, like munkape:munkape instead of the variable ${USER} |

Kismeteer
GoonWaffe Goonswarm Federation
777
|
Posted - 2015.01.28 21:37:37 -
[68] - Quote
I am considering modifying the HOWTO to do a wine upgrade to 1.7 to eliminate the problems with the launcher, any frequent users have any strong feelings on this? |

Takumiro
Amok. Goonswarm Federation
15
|
Posted - 2015.02.07 09:22:48 -
[69] - Quote
Go right ahead.
skink
|

Katrina Bekers
Rim Collection RC Sorry We're In Your Space Eh
240
|
Posted - 2015.02.16 09:10:03 -
[70] - Quote
I dare to say that anyone trying his/her luck with EVE+WINE should go the 1.7 way.
At least with *Ubuntu, with the right PPA, it's embarassingly easy to install and use the 1.7 branch.
1.6 is the one declared "stable", but I feel much more confident using 1.7 nowadays.
<< THE RABBLE BRIGADE >>
|
|

Ronix Aideron
Windrammers Black Legion.
157
|
Posted - 2015.03.09 11:12:28 -
[71] - Quote
I have read your thread would your steps work for LinuxMint 17.1? I am building up my computer and I am thinking about going with LinuxMint since I have read better things about the Cinnamon desktop then the Unity interface in Ubuntu.
Start the day off slow and taper off from there.
http://eveboard.com/pilot/Ronix_Aideron
|

Ronix Aideron
Windrammers Black Legion.
157
|
Posted - 2015.03.20 21:06:04 -
[72] - Quote
I am not sure what is wrong. I have wine and can run a single instance of Eve using the files that were created. I get an error that the files do not exist when I use your script. How to I create another instance of Eve so I can multi-box?
Start the day off slow and taper off from there.
http://eveboard.com/pilot/Ronix_Aideron
|

Torgeir Hekard
I MYSELF AND ME
136
|
Posted - 2015.03.21 07:36:07 -
[73] - Quote
Ronix Aideron wrote:I am not sure what is wrong. I have wine and can run a single instance of Eve using the files that were created. I get an error that the files do not exist when I use your script. How to I create another instance of Eve so I can multi-box? Just ignore all that stuff. Launcher works fine for like a year already. Just start it and launch multiple clients from there. Also no need for virtual desktops. |

Ronix Aideron
Windrammers Black Legion.
157
|
Posted - 2015.03.21 17:52:17 -
[74] - Quote
I am struggling on the multibox aspect of this. I can open one client no problem but two instances of the client seem to give me problems.
I have tried emulating the desktop and opening two within the virtual desktop. I have also tried installing Eve in two different folders with a launcher shortcut to the exe in the two different folders.
What am I missing on getting two clients open at the same time?
--Edit-- Apparently I was not patient enough. I just needed to try it again. It appears that I can run two clients within the Virtual Wine desktop.
Start the day off slow and taper off from there.
http://eveboard.com/pilot/Ronix_Aideron
|

Kismeteer
GoonWaffe Goonswarm Federation
800
|
Posted - 2015.03.23 16:15:59 -
[75] - Quote
You are missing a key variable in your launch scripts using the launcher:
/desktop=eve2
This defines a separate desktop per client. MUCH easier to play with.
Try editing the file ~/bin/v1 and ~/bin/v2 to match the patch where you installed eve. |

Bal Thezar
Neo Brigade
0
|
Posted - 2015.03.26 16:29:16 -
[76] - Quote
so Ubuntu 14.04, Wine 1.7 Nvidia current drivers
Wine will not install the Eve Offline Installer.MSI tried wine msiexec eve-offline-installer.msi, FAIL
Where do I find the eve offline installer.exe? Ive spent the last 2 hours looking.
Any help would be totally awesome |

Torgeir Hekard
I MYSELF AND ME
136
|
Posted - 2015.03.26 18:47:19 -
[77] - Quote
wine msiexec /i installer.msi |

Lucida Boirelle
University of Caille Gallente Federation
0
|
Posted - 2015.04.05 17:54:06 -
[78] - Quote
This worked great for me. I tweaked the scripts a little. (Ubuntu GNOME, cause I HATE Unity more than mining)
1. Made ~/bin into ~/.bin to avoid cluttering my home folder 2. Added the following .desktop files to make launching under Gnome:
[Desktop Entry] Encoding=UTF-8 Name=EVE Online (Full Screen) Exec=~/.bin/g1.sh Icon=~/.bin/EVE128.png Type=Application Categories=Games;
This gets stored in ~/.bin/ and linked or copied to ~/.local/share/applications/
I got the .png file from a google search
g1.sh is my 1920x1080p version of f1
One question, can I do this without launching a "desktop" in the script. I'm curious if it affects how much resource overhead wine is consuming per client. |

Goongus Flahn
Bread and Roses
0
|
Posted - 2015.04.06 06:22:41 -
[79] - Quote
Using ubuntu 14.04 LTS and wine 1.7.38. Trying to open the current eve offline installer (EVE_Online_Installer_Full_872788.msi) and it just freezes after 5 to 10 seconds. |

MinnaR Mosan
13th Squadron The Initiative.
0
|
Posted - 2015.04.20 05:38:49 -
[80] - Quote
In ubuntu 14.04 LTS i have the error:
Quote:err:winediag:shader_generate_glsl_declarations The hardware does not support enough uniform components to run this shader, it may not render correctly.
Im using the following video card in my laptop:
VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV516/M64-S [Mobility Radeon X2300]
I have seen that catalyst fglrx drivers are no more supported:
http://wiki.cchtml.com/index.php/Ubuntu_Maverick_Installation_Guide#Removing_Catalyst.2Ffglrx
Quote: Which cards are no longer supported by ATI? The ATI Radeon 9500-9800, Xpress200-1250, 690G, 740G, X300-X2500 (including Mobility RadeonHD 2300, since it is really a DirectX 9 part). See the complete list here. If your card is on that list, you are limited to open-source drivers on Ubuntu Lucid/10.04 (and later). If you really need the proprietary Catalyst/fglrx driver, you will have to use an older Linux distribution, such as Debian Lenny/5.0.x or Ubuntu Hardy/8.04.x.
But 3d acceleration works properly with the open source drivers.
May be im missing something? |
|

Neuntausend
Rens Nursing Home
119
|
Posted - 2015.04.20 13:37:51 -
[81] - Quote
That videocard might actually be a little too old, it has to be almost as old as Eve itself, if I'm not mistaken. But as far as I know, many repositories contain fglrx-legacy, maybe that works? |

Kismeteer
GoonWaffe Goonswarm Federation
803
|
Posted - 2015.04.29 15:59:40 -
[82] - Quote
Finally am breaking down and going with Wine 1.7 as default.
Methods for install: sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine1.7
Everything should be fine, but if anyone else wants to test this on their 14.04 system that hasn't yet, let me know. |

Kismeteer
GoonWaffe Goonswarm Federation
803
|
Posted - 2015.04.29 22:07:01 -
[83] - Quote
For those considering Ubuntu 15.04: IMO, it is not worth it. You don't need it for anything of importance yet, most likely. They have only promised 9 months of patches. You will constantly have to mess with it. Just stick with 14.04 LTS. Next LTS release is in 2016.
Also, updated the OP with the Wine 1.7 changes. Finally gave up trying to use stock Ubuntu. |

Kropotkin
Center for Advanced Studies Gallente Federation
26
|
Posted - 2015.05.04 01:01:10 -
[84] - Quote
Just installed on new hardware with Xubuntu 14.04.2 and Wine 1.7 installed from the PPA.
Did not need to download the full alternate install package, just downloaded the ordinary Windows installer and launched it using "Run as Wine Windows installer". The new incremental loading of all the Eve files Just Worked, albeit slowly.
Mobo is ASRock AM1B-M, which has one VGA socket, driven by the integrated graphics of the AMD Athlon 5350 quad-core CPU chip, and which also has a PCIe socket that provides x4 performance in an x16 slot. I have 16 gigabytes RAM.
In the PCIe slot I have an EAH5450 graphics card with 512 megs VRAM, providing a second VGA socket and a DVI-I socket that I use an adapter to convert to a third VGA socket, for a total of three heads on the box.
I'm using the proprietary AMD Catalyst drivers for Ubuntu 14.04. I used AMDCCCLE to configure the three heads without Xinerama.
I did have an annoying Dance of the Drivers: there's a conflict between Wine and the Catalyst driver, and the workaround involves rebuilding the fglrx-core package of the Catalyst driver. I also had to add nogpumanager to the GRUB_CMDLINE_LINUX_DEFAULT string in /etc/default/grub, to stop the execrable gpumanager rejecting, on every reboot, the /etc/X11/xorg.conf constructed by amdcccle.
Since I don't use Xinerama, I have the same icons on the desktop of all three screens. To multibox, I launch the exefile.exe on each screen and it runs on that screen. I configure EVE graphics for "fixed window" rather than "fullscreen" to keep the EVE screen from minimizing itself when I switch focus away from it. I only have two accounts, so I only run two instances of EVE and use the third monitor for an out-of-Game browser or whatever.
I don't do PvP, so I can't say anything about whether this setup is viable for combat, but it was cheap: $27 for the mobo, $52 for the CPU, $145 for the 16GB RAM. I recycled the case, power supply and EAH5450 from an older machine and already had keyboard, trackball, monitors and KVM switches. |

Kismeteer
GoonWaffe Goonswarm Federation
803
|
Posted - 2015.05.06 16:00:18 -
[85] - Quote
Kropotkin wrote:Did not need to download the full alternate install package, just downloaded the ordinary Windows installer and launched it using "Run as Wine Windows installer". The new incremental loading of all the Eve files Just Worked, albeit slowly.
I'm sure the new installer uses the cache population techniques that the latest launcher users, so I'm sure that might be more effective. But I would rather have all my stuff downloaded already from a single fast CDN connection rather than adhoc. So I'm going to continue to maintain 'download the offline installer' line in here. Yes, it is longer. No, it won't dissuade a Linux geek. 
Thank you for the rest of your build out, it's nice to have proven configs that are cheap! |

March rabbit
Federal Defense Union
1631
|
Posted - 2015.05.07 15:22:30 -
[86] - Quote
Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks
The Mittani: "the inappropriate drunked joke"
|

Kismeteer
GoonWaffe Goonswarm Federation
803
|
Posted - 2015.05.07 20:37:14 -
[87] - Quote
March rabbit wrote:Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks
Did you install to c:\program files\ccp or c:\games and not /home/user/games or something?
Also, I recommend the offline installer. |

March rabbit
Federal Defense Union
1633
|
Posted - 2015.05.08 10:54:06 -
[88] - Quote
Kismeteer wrote:March rabbit wrote:Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks Did you install to c:\program files\ccp or c:\games and not /home/user/games or something? Also, I recommend the offline installer. Used both available installers.
Tried to set path in installer to various directories, to empty string, to "c:\" and "z:\" (i have them in my Wine configuration). Checked access rights to directories in $HOME/.wine64 - everything looks good.
People report that this problem happens sometime with MSI packages in Windows. But i found no info about Linux specifics.
The Mittani: "the inappropriate drunked joke"
|

Torgeir Hekard
I MYSELF AND ME
154
|
Posted - 2015.05.09 16:11:42 -
[89] - Quote
So, I accidentally my laptop. Well, not the laptop itself. The power supply. And it won't charge with an universal one (either the 3pin connector is a vendor lock-in, or I burned the charger circuit).
So, I had my old desktop with Phenom II X4 and an old HD4870. I also had a spare old 120gb HDD.
So while the power supply is in service, I just copied (don't want to mes with the laptop installation) the system (14.04) to the drive and tried to make it work (btw, GRUB2+GPT+BIOS combo needs a small partition in the beginning of the disk. Don't repeat my mistakes).
So, guys. r600g works. And it works with gallium nine and dx9 wine!
For *buntu you'll need these 2 PPAs:
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers This is git mesa and xorg video drivers with gallium nine support
https://launchpad.net/~commendsarnex/+archive/ubuntu/winedri3 This is wine with native dx9 patches.
You'll also need to either use drm.rnodes=1 kernel option before 3.17 or use DRI3. The latter can be done by adding Option "DRI3" "on" to your xorg.conf which you most likely don't have because it's autoconfig for past several years.
You can just create a fresh /etc/X11/xorg.conf with the following content:
Section "Device" Identifier "HD4870" #can be anything - just a variable name Driver "radeon" Option "DRI3" "on" EndSection
The patched wine has a checkbox for native DX9 in the winecfg graphics tab.
If you've done everything right, this should appear in console when starting the client (not the launcher):
Native Direct3D 9 is active. For more information visit https://wiki.ixit.cz/d3d9
Performance looks about the same as the regular r600g driver, but with more stable FPS. I can't compare to fglrx, but I get around 40FPS on high settings in full HD window, which drops in asteroid belts to about 20 (asteroid environment, light rays, post processing and interface windows, especially blurred, are the main offenders). Though it feels much better than 20fps on my laptop nvidia because fps is a stable flatline (unless it's loading resources from ye olde HDD). With settings on low and no vsync it can reach up to 160fps. The middle ground is around medium shaders and low postprocessing, which lands you in a comfortable 40-60fps zone with vsync on. |

Torgeir Hekard
I MYSELF AND ME
154
|
Posted - 2015.05.09 16:18:20 -
[90] - Quote
March rabbit wrote:Checked access rights to directories in $HOME/.wine64 - everything looks good. >wine64 >wine64 >wine64?!
Eve can't has wine64.
You need x86 wine with 32bit prefix. |
|

Roesjka
The Last Solution Inc Dawn of Transcendence
0
|
Posted - 2015.05.12 10:07:51 -
[91] - Quote
March rabbit wrote:Kismeteer wrote:March rabbit wrote:Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks Did you install to c:\program files\ccp or c:\games and not /home/user/games or something? Also, I recommend the offline installer. Used both available installers. Tried to set path in installer to various directories, to empty string, to "c:\" and "z:\" (i have them in my Wine configuration). Checked access rights to directories in $HOME/.wine64 - everything looks good. People report that this problem happens sometime with MSI packages in Windows. But i found no info about Linux specifics.
You need to install it with msiexec instead off wine than the installer works . Found this as I had the same problem. Search on installing .msi installer in wine. Works great.
cheers |

Roesjka
The Last Solution Inc Dawn of Transcendence
0
|
Posted - 2015.05.12 10:16:29 -
[92] - Quote
Torgeir Hekard wrote:March rabbit wrote:Checked access rights to directories in $HOME/.wine64 - everything looks good. >wine64 >wine64 >wine64?!Eve can't has wine64. You need x86 wine with 32bit prefix.
Actually you can use wine64 to start/run eve, I do, and it will run very well. See my bio in EVE.
cheers
|

March rabbit
Federal Defense Union
1638
|
Posted - 2015.05.13 11:06:49 -
[93] - Quote
Roesjka wrote:March rabbit wrote:Kismeteer wrote:March rabbit wrote:Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks Did you install to c:\program files\ccp or c:\games and not /home/user/games or something? Also, I recommend the offline installer. Used both available installers. Tried to set path in installer to various directories, to empty string, to "c:\" and "z:\" (i have them in my Wine configuration). Checked access rights to directories in $HOME/.wine64 - everything looks good. People report that this problem happens sometime with MSI packages in Windows. But i found no info about Linux specifics. You need to install it with msiexec instead off wine than the installer works . Found this as I had the same problem. Search on installing .msi installer in wine. Works great. cheers wine msiexec /i EVE_Online_Installer_879797.msi
Result: "Installation directory must be on a local hard drive"
Path: can be any from C:\ to full default.
The Mittani: "the inappropriate drunked joke"
|

Roesjka
The Last Solution Inc Dawn of Transcendence
0
|
Posted - 2015.05.14 10:07:29 -
[94] - Quote
March rabbit wrote:Roesjka wrote:March rabbit wrote:Kismeteer wrote:March rabbit wrote:Debian 8 x64 here. Installed Wine. Downloaded Eve installer. "wine start Eve...msi" leads to error "installation directory must be on a local hard drive". Googled around. No success. Any ideas?
Thanks Did you install to c:\program files\ccp or c:\games and not /home/user/games or something? Also, I recommend the offline installer. Used both available installers. Tried to set path in installer to various directories, to empty string, to "c:\" and "z:\" (i have them in my Wine configuration). Checked access rights to directories in $HOME/.wine64 - everything looks good. People report that this problem happens sometime with MSI packages in Windows. But i found no info about Linux specifics. You need to install it with msiexec instead off wine than the installer works . Found this as I had the same problem. Search on installing .msi installer in wine. Works great. cheers wine msiexec /i EVE_Online_Installer_879797.msi Result: "Installation directory must be on a local hard drive" Path: can be any from C:\ to full default.
Try just "msiexec /i EVE_Online_Installer_879797.msi". Don't put wine in front.
cheers
|

March rabbit
Federal Defense Union
1642
|
Posted - 2015.05.14 11:31:39 -
[95] - Quote
Roesjka wrote: Try just "msiexec /i EVE_Online_Installer_879797.msi". Don't put wine in front.
akanashin@akanashin:~$ locate msiexec /home/akanashin/.wine/drive_c/windows/system32/msiexec.exe /home/akanashin/.wine64/drive_c/windows/system32/msiexec.exe /usr/lib/x86_64-linux-gnu/wine/wine/msiexec.exe.so /usr/lib/x86_64-linux-gnu/wine/wine/fakedlls/msiexec.exe akanashin@akanashin:~$ msiexec bash: msiexec: command not found akanashin@akanashin:~$ apt-file search msiexec akanashin@akanashin:~$

The Mittani: "the inappropriate drunked joke"
|

Kismeteer
GoonWaffe Goonswarm Federation
803
|
Posted - 2015.05.19 17:43:20 -
[96] - Quote
March rabbit wrote:Roesjka wrote: Try just "msiexec /i EVE_Online_Installer_879797.msi". Don't put wine in front.
akanashin@akanashin:~$ locate msiexec /home/akanashin/.wine/drive_c/windows/system32/msiexec.exe /home/akanashin/.wine64/drive_c/windows/system32/msiexec.exe /usr/lib/x86_64-linux-gnu/wine/wine/msiexec.exe.so /usr/lib/x86_64-linux-gnu/wine/wine/fakedlls/msiexec.exe akanashin@akanashin:~$ msiexec bash: msiexec: command not found akanashin@akanashin:~$ apt-file search msiexec akanashin@akanashin:~$ 
Try adding your paths in there.
I actually tend to launch these from the folder browser. |

Hundurinn Nero
Temnava Legion
1
|
Posted - 2015.06.02 10:05:16 -
[97] - Quote
I am running Ubuntu 15.04 with i-5 4590 and some crappy intel graphics.
I installed wine 1.7 Downloaded the installer from Here Ran the installer by right clicking and selecting Run with Wine Windows program loader. Ran eve.exe from the /home/user/.wine/drive_c/CCP/EVE The launcher came right up, installed 300 mb af stuff and then I was able to log in. Currently running with 20 FPS while in station and also while I am sitting on the Jita undock.
Probably this easy as I do not have a Nvidia or ATI graphics card. |

Leon Issier
Black.Tie
0
|
Posted - 2015.06.05 13:27:09 -
[98] - Quote
Thanks for the guide. I installed it on 15.04 with wine 1.7. I get 60 fps in station, haven't tested outside yet but it seems pretty good.
The offline installer didn't work for me, it gives me an unexpected error and quit so I used the normal installer and it worked fine.
Question, how can I make it fullscreen? Right now, I had to hide the launch bar of ubuntu because it was bumping the window to the right and was hiding a piece of the game. Also, the top bar of ubuntu is still visible and there's a small gap at the bottom of the screen about the height of the top bar.
My ubuntu resolution is set to 1920x1080 like my game. The game is set to fullscreen.
Bonus question, is it safe to delete the data in the public/application data/ folder? It takes 8Go. I don't mind that much but I like to keep it clean.
Thanks again! |

Neuntausend
Rens Nursing Home
141
|
Posted - 2015.06.06 14:23:01 -
[99] - Quote
That happens sometime, and I haven't found a reliable way to avoid this every time. Hasn't happened to me lately, but I haven't been using unity in a long time.
Try fixed window mode ingame or a virtual desktop in winecfg set to your native screen resolution. |

Kismeteer
GoonWaffe Goonswarm Federation
821
|
Posted - 2015.06.16 18:08:22 -
[100] - Quote
I am also using fixed window in game. I will update OP.
I have also used full screen, which spawns on another screen. And then switched to windowed mode. but Windowed mode does weird things inside the wine environment, leaving a title bar. |
|

SpaceSaft
Capts Deranged Cavaliers Gentlemen's.Club
153
|
Posted - 2015.06.29 18:01:39 -
[101] - Quote
Hello I'm that guy, nice to meet you.
The guy that went against the recommendation of sticking to 14.04 , installing went fine, but the launching not so much. Here are the error messages I get when trying to run the scripts:
http://www.pasteall.org/59243
Any help is greatly appreciated.
The UI is still bad.
|

Torgeir Hekard
I MYSELF AND ME
184
|
Posted - 2015.06.30 03:42:01 -
[102] - Quote
probably needs libpng and i386 opengl libs (depends on the driver)
zero info on your part |

Kismeteer
GoonWaffe Goonswarm Federation
827
|
Posted - 2015.06.30 21:03:33 -
[103] - Quote
You tried to install a new version of Wine yourself? Or are you on CentOS?
https://www.centos.org/forums/viewtopic.php?f=14&t=50175 - first hit search on CentOS, need a recompile with PNG support.
Please include (from OP): Please include your OS (cat /etc/lsb-release), wine version (wine --version), and video card (lspci | grep -i vga). For nvidia card, if module is loaded (lsmod | grep -i nvidia) and your nvidia driver version (nvidia-settings) is good.
PS. Save your stuff. Reinstall Ubuntu 14.04. Or playonlinux. Or Mint. Or Arch. Or crunchbang. Or anything else Debian based. Friends don't let friends use CentOS. |

SpaceSaft
Capts Deranged Cavaliers Gentlemen's.Club
155
|
Posted - 2015.07.04 16:50:04 -
[104] - Quote
Ooops
info you asked for in the OP
$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=15.04 DISTRIB_CODENAME=vivid DISTRIB_DESCRIPTION="Ubuntu 15.04"
$ wine --version wine-1.5.21
$ lspci | grep -i vga 01:00.0 VGA compatible controller: NVIDIA Corporation G92 [GeForce 8800 GT] (rev a2)
$ lsmod | grep -i nvidia nvidia 11366400 31 drm 344064 3 nvidia
Nvidia driver version : 304.125
The UI is still bad.
|

Torgeir Hekard
I MYSELF AND ME
186
|
Posted - 2015.07.05 09:16:59 -
[105] - Quote
SpaceSaft wrote: $ wine --version wine-1.5.21
Errrrrm. WHAT You sir are an inspiring archeologist.
That's too old. Install wine from PPAs (it also probably has in dependencies the things you are missing). |

SpaceSaft
Capts Deranged Cavaliers Gentlemen's.Club
155
|
Posted - 2015.07.05 15:40:16 -
[106] - Quote
I did.
But how do I run it then?
Look
Actually even when I uninstall all package versions of wine there is a wine commando that works and returns 1.5 as version, I guess I'll see if I can clean that up first.
The UI is still bad.
|

Kismeteer
GoonWaffe Goonswarm Federation
827
|
Posted - 2015.07.07 22:14:13 -
[107] - Quote
SpaceSaft wrote:Also means I can confirm this guide works for 15.04.
Thanks for the heads up. I do NOT recommend using 15.04. Stick to 14.04 LTS, always LTS with Ubuntu.
I am considering including the CPU affinity to the scripts, thoughts on this?
|

Nil Proximus
Caldari Provisions Caldari State
0
|
Posted - 2015.07.09 00:16:18 -
[108] - Quote
for me everything worked out of the box on my Acer C720 Chromebook, Ubuntu 14.04 and wine 1.7 (I might had to restart it once or twice, don't quite remember) ..except 1 bug, wine was missing arial.ttf font, so my market history window didn't render any text. After I got that font file there, all is well so far |

Torgeir Hekard
I MYSELF AND ME
191
|
Posted - 2015.07.09 04:36:35 -
[109] - Quote
Nil Proximus wrote: ..except 1 bug, wine was missing arial.ttf font, so my market history window didn't render any text. After I got that font file there, all is well so far
winetricks corefonts for that |

Tux Tango
Usque Ad Mortem Usurper.
3
|
Posted - 2015.07.11 16:54:02 -
[110] - Quote
Kismeteer Thanks for the post. Worked "out of the box" Ubuntu 15.04 64bit WIne-1.7.44 nvidia geforce gtx 770, 346.59
Nil Proximus wrote:for me everything worked out of the box on my Acer C720 Chromebook, Ubuntu 14.04 and wine 1.7 (I might had to restart it once or twice, don't quite remember) ..except 1 bug, wine was missing arial.ttf font, so my market history window didn't render any text. After I got that font file there, all is well so far you can try restricted applications
sudo apt-get install ubuntu-restricted-extras
(just my initial thought) |
|

Bridget GGisaku
Reptilian Shapeshifters
0
|
Posted - 2015.08.07 18:47:18 -
[111] - Quote
Worked for me too. Kubuntu 15.04 wine-1.7.44 GeForce 210 (I know, I know...)
The offline installer files didn't work for me. When I launched the installer, it would load and freeze. But the standard installer worked super smoothly, and did not take me too long to dl the stuff! Thank you! |

Valas Morovai
Eighth Legion
0
|
Posted - 2015.08.15 18:33:21 -
[112] - Quote
Recently switched this box over to Kubuntu 15.04 64bit with Wine 1.7.44 Plasma 5.2.2 using fglrx drivers for ATI Radeon 7870. I tried installing per instructions using offline installer and installation would hang after initializing Eve window. I tried everything again using online installer and it went through to completion in a blink of an eye with no problems. I am getting 60 fps consistently around stations and in asteroid belts with no hiccups so far at 1920 x1080 75 Hz full screen. Using i5 3570K at 3.4 so I have not tried to overclock like it was in Windows. I am new to the Linux environment but I am liking the Kubuntu KDE desktop so far. Thanks for this post it helped immensely. |

Navy0684
WiNGSPAN Delivery Services
0
|
Posted - 2015.08.16 16:00:29 -
[113] - Quote
I'm having trouble with setting up the shell scripts. How did you write them?
"This is your 'no updates' shell script. I save this in ~/bin/v1" wrote:
# This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\bin\exefile.exe"
"# This is your launcher shell script. Use it when you have updates to run. I save this in ~/bin/e1" wrote:
# This runs in .wine, with standard display, using the desktop variable 'eve1' with a size, with a location. /usr/bin/env WINEPREFIX="$HOME/.wine" DISPLAY=":0.0" wine explorer /desktop=eve1,1024x768 "C:\Games\CCP\EVE\eve.exe" |

Kismeteer
GoonWaffe Goonswarm Federation
829
|
Posted - 2015.08.17 17:31:14 -
[114] - Quote
Navy0684 wrote:I'm having trouble with setting up the shell scripts. How did you write them?
These are written in bash and just launch eve in the simplest way possible.
If you are having difficulty, just put the info we request in the OP, and run the script by doing 'bash -x ./e1' or whatever path to your e1 script is. This will show the commands. Then paste it in here.
|

Navy0684
WiNGSPAN Delivery Services
0
|
Posted - 2015.08.18 00:34:53 -
[115] - Quote
Something like this:
#!/bin/bash
sudo chmod +x "/home/navy0684/.wine/dosdevices/c:/Program Files (x86)/CCP/EVE/bin"
sudo chmod 755 "exefile.exe" |

Kismeteer
GoonWaffe Goonswarm Federation
829
|
Posted - 2015.08.26 18:50:14 -
[116] - Quote
Couldn't load the latest update with my old drivers, had to upgrade to the latest nvidia ones.
https://forums.eveonline.com/default.aspx?g=posts&m=5995469#post5995469
Repasted here:
- Download latest driver: https://www.nvidia.com/download/index.aspx Select your card, use "lspci | grep -i vga" and Linux 64-bit to use it.
- Logout of X
- Go to console shell account using Control-Shift-F1 and login
- Stop X sudo /etc/init.d/lightdm stop
- Run the Nvidia drivers as root. Mine was: sudo bash Downloads/NVIDIA-Linux-x86_64-352.30.run
- Accept agreement, install the 32 bit versions of stuff, allow it to alter your xconfig.
- Reboot
- Login to X
- sudo nvidia-settings
- On X Server Display Configuration, Dragged second monitor screen, and hit apply, and save.
- Started Eve Launcher
- Went to gear icon in the upper right (options), and changed mode to DX9 only, and hit save. (Newest versions of nvidia has DX11 emulation, which doesn't work.)
OpenGL core profile version string: 4.3.0 NVIDIA 352.30 01:00.0 VGA compatible controller: NVIDIA Corporation GM107 [GeForce GTX 750 Ti] (rev a2) 3.13.0-62-generic, Ubuntu 14.04.03 wine 1.7.50 |

Kismeteer
GoonWaffe Goonswarm Federation
830
|
Posted - 2015.09.10 21:52:47 -
[117] - Quote
Thanks to Null More, I have added the dx9 force flag on. Thanks! |

Zosius
Two Factory Vultures
65
|
Posted - 2015.09.17 16:31:27 -
[118] - Quote
I'm gonna ask few questions. Please don't kill me as I'm very new to Linux. I want to configure to play EVE without launcher but I have trouble following guide in the first post. Here are my questions:
1. 7.Setup a few shell scripts. save no update script in ~/bin/v1". save update script in ~/bin/e1
Ok, how do I create this script and make it run? Is it a text file I create? I have my EVE installed in below path:
/home/myuser/PlayOnLinux's virtual drives/EVEonline/drive_c/Program Files/CCP/EVE/bin
Do I need to create new folders e1/v1/e2v2 and so on for each client?
2. 8.For multiple instances, you copy ~/bin/v1 to ~/bin/v2, and edit the file to use 'eve2' instead of 'eve1' on the command line. This can be as many as your machine can handle.
Which file I edit and how do I do that?
-- Wine: 1.7.50 Kubuntu 14.04, but can use Ubuntu 14.04 if that makes any difference.
thanks for the help
http://cloakybastard.blogspot.com
|

Barick Lafisques
Falcoes Peregrinos CCLP
0
|
Posted - 2015.09.18 02:50:46 -
[119] - Quote
When I start EVE, log and select a character I get a black screen.
I can hear some sounds and open the option menu.
Here my confs:
humano@computador:~$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=14.04 DISTRIB_CODENAME=trusty DISTRIB_DESCRIPTION="Ubuntu 14.04.3 LTS" humano@computador:~$ wine --version wine-1.7.50 humano@computador:~$ lspci | grep -i vga 01:00.0 VGA compatible controller: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] (rev a1) humano@computador:~$ lsmod | grep -i nvidia nvidia 8605696 78 drm 344064 3 nvidia humano@computador:~$ |

Kismeteer
GoonWaffe Goonswarm Federation
840
|
Posted - 2015.09.21 20:41:31 -
[120] - Quote
Barick Lafisques wrote:When I start EVE, log and select a character I get a black screen.
I can hear some sounds and open the option menu.
Here my confs:
I would most likely confirm that your nvidia drivers are working properly. If you look at the top of your eve logs when you actually log it, it might spit out what is wrong with it. Try giving us the output of glxinfo.
I had this problem, and had this error: fixme:d3d_surface:surface_cpu_blt Unsupported flags: 0x80000000.
I ended up having to go to the nvidia proprietary drivers. https://forums.eveonline.com/default.aspx?g=posts&t=442628&find=unread |
|

Xocotli Akar
Harbingers of Chaos Inc Gentlemen's.Club
0
|
Posted - 2015.09.25 19:06:50 -
[121] - Quote
Just sending out some gratitude for keeping this thread alive.
I've been having nightmare with Windows 8.1 and now 10 fighting driver issues...crashes...instability for days.
This thread has reinforced my inspiration to ban Windows from my home. haha
Thanks.
I'm sure I'll have questions along my journey...but I'll poke and prod this thread. TONS of useful content. |

Montoo Laeman
KarmaFleet Goonswarm Federation
0
|
Posted - 2015.09.29 10:23:49 -
[122] - Quote
Thanks for the extensive guide! I do have a problem though. When I start the launcher it starts patching and will always get stuck at the same point (13.73/17.02 MB 80.7%). This happens both with and without launching using the shell script. Now it could be Iß++ not waiting long enough, but I've been sitting here for around 50 minutes now without anything happening.
|

Kismeteer
GoonWaffe Goonswarm Federation
842
|
Posted - 2015.09.30 17:57:01 -
[123] - Quote
Montoo Laeman wrote:Thanks for the extensive guide! I do have a problem though. When I start the launcher it starts patching and will always get stuck at the same point (13.73/17.02 MB 80.7%). This happens both with and without launching using the shell script. Now it could be Iß++ not waiting long enough, but I've been sitting here for around 50 minutes now without anything happening.
Are you sure you have enough space on the device? Can you write to it? Anyway, complicate write up follows.
If you have a space problem, clear some for eve. It takes a lot, like 28G for me right now.
Also, make sure you own all the files by doing: sudo chown -R $USER ~/.wine #This will change the ownership of everything in .wine to your $USER account. Or put bob or whomever you log in as if you want.
You might have a problem with your eve in general, there are a couple places you can look. Unfortunately, I'm not sure where they keep patches anymore.
You can clear your patches folder, which I do'nt even know if they use them anymore. This one command should do the trick: rm ~/.wine/drive_c/users/${USER}/Local\ Settings/Application\ Data/CCP/Eve/Patches/* #It should be empty, if it exists.
Your settings are in ~/.wine/drive_c/users/${USER}/Local Settings/Application Data/CCP/EVE/c_games_ccp_eve_tranquility so you could clean out the 'cache' folder in there, but that will take time to restock as well. If you are super aggressive, you might wipe out your overview settings. Feel free to use my own private overview by joining the in game mailing list 'KisOver', and you can load the overviews from there. Or use the sarah's pack like everyone else.
You can clear out your temp directory, which will be filled with crap. rm -rf ~/.wine/drive_c/users/${USER}/Temp/*
Secondarily, you might consider purging your Shared Cache, which will take a long time to download again. that is in ~/.wine/drive_c/users/Public/Application Data/CCP/EVE/SharedCache. You can also clear this cache if you can launch eve. This can clear temporary space too. |

Eddie Miromme
Outlaw Star Incorporated
0
|
Posted - 2015.10.25 07:56:02 -
[124] - Quote
http://pastebin.com/1LkaRAP4
I get to the windowed environment (running the non-launcher script) and it launches the launcher anyways, and once I press play, it closes the environment. That paste is the error I get, and I've been working on this for quite some time...
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=14.04 DISTRIB_CODENAME=trusty DISTRIB_DESCRIPTION="Ubuntu 14.04.3 LTS"
wine-1.7.50
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Kaveri [Radeon R7 200 Series] (rev d4)
I have the latest drivers (15.9) for my a10-7870, with catalyst control.
Not really sure what else I should tell you... but I'm desperate to get this working!!! |

Torgeir Hekard
I MYSELF AND ME
207
|
Posted - 2015.10.25 10:50:43 -
[125] - Quote
Well, teh obvious part is it can't find the i386 version of libGL. Teh hard question is, how to fix that, because that's probably some kind of ldconfig magic I don't understand.
But let's start with the easier parts.
1) is your wineprefix 32bit? 2) ldconfig -p | grep libGL please 3) ls /etc/ld.so.conf.d/ please
Since I run bumblebee, I've got no idea how fglrx handles libGL shenanigans, but the general idea is, you've got (or, rather, should have) 2 separate libGLs. One for 64bit programs. One for 32bit programs. They are (or, rather, should be) bundled with your graphics driver.
If the driver package/installer fails to create proper symlinks/ldconfig, **** happens.
Your options then are to fix it either by reinstalling the driver and hoping it gets it right, or manually finding the libraries and creating proper symlinks/ldconfig. Or maybe trying to run with LD_PRELOAD=path_to_proper_libGL EVE.sh
judging by apt-file output, you should search for i386 libgl in /usr/lib32/fglrx/ and probably do something with ldconfig |

Eddie Miromme
Outlaw Star Incorporated
0
|
Posted - 2015.10.25 19:35:42 -
[126] - Quote
My prefix seems to be 64 bit
libGLU.so.1 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libGLU.so.1 libGLU.so.1 (libc6) => /usr/lib/i386-linux-gnu/libGLU.so.1 libGLU.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libGLU.so libGLEWmx.so.1.10 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libGLEWmx.so.1.10 libGLEW.so.1.10 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libGLEW.so.1.10 libGLEW.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libGLEW.so libGLESv2.so.2 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/mesa-egl/libGLESv2.so.2 libGL.so.1 (libc6,x86-64) => /usr/lib/libGL.so.1 libGL.so.1 (libc6) => /usr/lib/i386-linux-gnu/mesa/libGL.so.1 libGL.so.1 (libc6) => /usr/lib/i386-linux-gnu/libGL.so.1 libGL.so.1 (libc6) => /usr/lib32/libGL.so.1 libGL.so (libc6,x86-64) => /usr/lib/libGL.so libGL.so (libc6) => /usr/lib/i386-linux-gnu/libGL.so libGL.so (libc6) => /usr/lib32/libGL.so
fakeroot-x86_64-linux-gnu.conf x86_64-linux-gnu_EGL.conf i386-linux-gnu_GL.conf x86_64-linux-gnu_GL.conf i686-linux-gnu.conf zz_i386-biarch-compat.conf libc.conf zz_x32-biarch-compat.conf x86_64-linux-gnu.conf
|

Eddie Miromme
Outlaw Star Incorporated
0
|
Posted - 2015.10.26 02:39:39 -
[127] - Quote
problem solved, reinstalled ubuntu, used proprietary drivers, but dont have catalyst control installed... should i just sudo apt-get the control center? also the offline installer has never worked for me, and since both are .msi i just did the normal online windows install and it works great. I can even tab out and into the game and suffer no performance loss at the standard script settings, definitely want to set my monitor back to 144hz though, so if anyone has any suggestions for what i can do to make my experience better that would be awesome!!! |

Kismeteer
GoonWaffe Goonswarm Federation
854
|
Posted - 2015.10.27 18:34:01 -
[128] - Quote
BTW, I spoke to someone at Eve Vegas who was in Wingspan about the Linux thread. It was really nice talking to you. I was the dude dressed as The Dude from Big Lebowski on Friday, and had an EFF hat on otherwise btw. |

Django Toralen
State War Academy Caldari State
0
|
Posted - 2015.11.07 16:54:07 -
[129] - Quote
Hi! First of all: Thanks for this Topic! AWESOME!
As next ... I have a problem :)
I installed EvE Online - Launcher is starting without any problems any time I try. But if I click "play" it says "starting" for some time (10 to 20 seconds) and then the blue "starting" button just says "play" again. So the game itself seems not to start. What could I try to fix this?
Ubuntu 14.04 LTS Wine 1.7.50 |

Adara Starkiss
Blackstone Holdings Sev3rance
5
|
Posted - 2015.11.14 20:50:54 -
[130] - Quote
Having trouble as well, but in my case, the error Im getting is while its applying the patch. I have to mention that I was getting this same error in my windows installation and Im running out of ideas on what to do.
The error:
"Exception during UpdaterModule.Update Traceback (most recent call last): File "lib\update.pyo", line 117, in run File "lib\update.pyo", line 381, in _Update File "lib\update.pyo", line 267, in ApplyPatch File "lib\steps\applyHttpPatch.pyo", line 43, in Run File "zsync\zsync.pyo", line 708, in ApplyPatch File "zsync\zsync.pyo", line 708, in ApplyPatch File "zsync\zsync.pyo", line 661, in PatchFile File "zsync\zsync.pyo", line 653, in PatchFile File "zsync\fileSync.pyo", line 382, in GetBlock...." (too many lines to copy).
My system info:
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=15.04 DISTRIB_CODENAME=vivid DISTRIB_DESCRIPTION="Ubuntu 15.04"
wine-1.7.50
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7560D]
Its a FM2 A8-5600K cpu, 4GB RAM, brand new Sandisk 120GB SSD
While in windows, I would try the repair and it would download the new version, then get to the 6/7 step, starts download and stops exactly at 70%, always. Havent tried the repair on this Linux installation yet. The last windows install I used the online installer, but for this Linux install I went with the offline installer, cause Im running on a limited data plan.
Any ideas?
Ubuntu Mate 15.04 64bit / Amd A8-5600 / 4GB DDR3 / Sandisk 120GB SSD Plus
|
|

Adara Starkiss
Blackstone Holdings Sev3rance
6
|
Posted - 2015.11.16 11:05:13 -
[131] - Quote
The beta launcher did it for me. Its working now. Its not perfect, but looks good and it works. In-game browser is not working for me and I have lag when going into industry, show info and some others, but other than that, its going great.
Ubuntu Mate 15.04 64bit // Amd A8-5600K // 4GB DDR3 // Sandisk 120GB SSD Plus
Wine 1.7.50 // Beta Launcher // TS3 working // Happy to be back in Ubuntu :)
|

Zosius
Two Factory Vultures
71
|
Posted - 2015.11.21 11:30:34 -
[132] - Quote
Hello,
I got few questions:
1. I would like to know if it's possible to move EVE windows through my 3 monitor screens, When I launch EVE1/2.. it gets stuck to the 0.0 monitor which is my left one. I would like to be able to move them same way if I used EVE Launcher.
2. Can I launch v1 v2 scripts without opening separate terminal windows? If I try to get 4 clients I have to have 4 terminals open.
In the end if I could run all my accounts via launcher that would be great, but it always freezes after I get first instance running.
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=14.04 DISTRIB_CODENAME=trusty DISTRIB_DESCRIPTION="Ubuntu 14.04.3 LTS"
wine-1.7.50
01:00.0 VGA compatible controller: NVIDIA Corporation Device 17c8 (rev a1) Neither command shows me video card reference, but it is GTX 980 ti; Nvidia driver: 346.96
http://cloakybastard.blogspot.com
|

Jenshae Chiroptera
2430
|
Posted - 2015.11.28 00:15:08 -
[133] - Quote
My favourite line in this thread.Adara Starkiss wrote:My system info:
DISTRIB_ID=Ubuntu DISTRIB_RELEASE=15.04
Any ideas?
Not a LTS. Could be a factor but have you changed any hardware lately?
CCP - Building ant hills and magnifying glasses for fat kids
There are other ways to fix Null Sec stagnation and Fozzie SOV is the wrong approach.
|

Saya Sakamoto
University of Caille Gallente Federation
0
|
Posted - 2015.12.09 18:35:08 -
[134] - Quote
Hey there, new player here.
Thanks a lot for the guide! Made a few things easier.
Maybe you should add a note that at step 4 (Install Eve) the installer freezes for about 5 Minutes. I've spend 2 hours or so trying to fix that damn thing before I noticed that I just have to sit it out..
Then the next day everything breaks again because of the december update but I got everything sorted now (using wine-development 1.7.49). |

Xtoph Adler
EVE University Ivy League
0
|
Posted - 2015.12.22 15:22:16 -
[135] - Quote
opening a web page in the ingame browser crashes the browser.
the game itself keeps working.
ubuntu 14.04 LTS wine 1.7.55
error log: https://www.dropbox.com/s/tr8qp3j6mjsd4eb/backtrace.txt?dl=0
let me know if i can provide more info.
thx for any help!!! |

Kismeteer
GoonWaffe Goonswarm Federation
870
|
Posted - 2016.01.27 20:58:05 -
[136] - Quote
BTW, if you have not moved to the new launcher, you should, it's pretty handy. I am still having problems multiboxing with it with this current setup, but works well for most other things. At some point, I'll update the OP with the new launcher options. |

Rastuasi
Blue Republic RvB - BLUE Republic
40
|
Posted - 2016.01.28 17:30:02 -
[137] - Quote
Did you install winhttp via winetricks like WineHQ says? Without it the browser crashes. |

Som Boty
Super Mother Fan Club
5
|
Posted - 2016.02.02 05:00:42 -
[138] - Quote
Hey,
First, thank you for this guide. It made the installation very easy and straight forward. The first time I tried this, I was able to get eve up and running almost effortlessly. It was a really great experience.
I had to reformat my laptop and now I am trying to reinstall eve. i get all the way to the point of running the installer but instead of launching and asking me for a directory, the box greys itself out, waits about 5 minutes, then closes without anything happening. Where do I go from here? |

Kismeteer
GoonWaffe Goonswarm Federation
870
|
Posted - 2016.03.09 17:13:47 -
[139] - Quote
There have been a couple hiccups with launcher problems, but generally this guide still works well. |

Jenshae Chiroptera
2628
|
Posted - 2016.03.14 16:00:17 -
[140] - Quote
Hit this point and it froze on the first splash screen.
Edit: ... and it just unfroze.
CCP - Building ant hills and magnifying glasses for fat kids
Not even once
EVE is becoming shallow and puerile; it will satisfy neither the veteran nor the "WoW" type crowd in the transition.
|
|

Kismeteer
GoonWaffe Goonswarm Federation
877
|
Posted - 2016.04.13 18:34:44 -
[141] - Quote
Note, I have tested this on the latest singurlarity, seems to be working fine. GG CCP |

Kismeteer
The Scope Gallente Federation
880
|
Posted - 2016.04.25 18:47:08 -
[142] - Quote
Due to 16.04 LTS getting released last week, I will work on the changes associated with it. but i have been hearing a lot of grief about graphic drivers. |

Jubakumbi
JDA Enterprises
0
|
Posted - 2016.05.25 03:29:58 -
[143] - Quote
Downloading the offline installation files now on a pristine 16.04 install with Wine 1.8. Using dual 670's. I think SLI might be working.
Will update as things move forward - this will be make or break to use Linux on my desk. |

Raviy Oyla
GoonWaffe Goonswarm Federation
0
|
Posted - 2016.06.04 20:00:14 -
[144] - Quote
So the original descriptions are a bit lacking.
I decided to try it all today and see what would take to get Eve running on Ubuntu 14.04 (freshly installed) and here is what I found:
1. Install wine 1.7
sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt update sudo apt install wine1.7
2. get latest winetricks
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod a+x winetricks
3. Make sure you run wine in 32bit mode:
export WINEARCH=win32
4. try to run eve as previously described (I highly recommend using the window mode). It will crash but it's ok
5. Install vcrun2013
./winetricks vcrun2013
5. Run eve again and this time it will work
This worked for me and I'm spinning my ship in Saranen as expected
|

Adara Starkiss
Blackstone Holdings Sev3rance
8
|
Posted - 2016.06.07 18:44:26 -
[145] - Quote
Why not even try first the new native launcher :) seems to work with many people without doing special things (or not too many in some cases)
Ubuntu Mate 15.04 64bit // Amd A8-5600K // 6GB DDR3 // Sandisk 120GB SSD Plus //
Wine 1.7.50 // Beta Launcher // TS3 working // Happy to be back in Ubuntu :)
|

Papu Motsu
State War Academy Caldari State
0
|
Posted - 2016.06.08 05:04:08 -
[146] - Quote
Use CRUX, Luke. |

Kismeteer
Bat Country Pandemic Legion
885
|
Posted - 2016.06.15 20:31:53 -
[147] - Quote
Thanks for everyone's help over their years with the eve on Linux project, I'm really glad to see we have an 'almost' supported version now. 
Forum admins (or CCP Snorlax), you can lock this thread. We'll fold into the new sticky, using the new launcher. |
|
|
|
Pages: 1 2 3 4 5 :: [one page] |