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

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

Linux

 
  • Topic is locked indefinitely.
 

[Closed]HOW TO: Ubuntu 14.04 LTS with Eve (And most other lesser distr

Author
Kismeteer
Bat Country
Pandemic Horde
#61 - 2014-12-08 19:18:34 UTC
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
Bat Country
Pandemic Horde
#62 - 2014-12-08 19:25:44 UTC
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
Bat Country
Pandemic Horde
#63 - 2014-12-12 19:45:09 UTC
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
Bat Country
Pandemic Horde
#64 - 2015-01-02 18:57:05 UTC
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
Perfusus Sanguine
Pandemic Horde
#65 - 2015-01-07 17:07:45 UTC
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
Bat Country
Pandemic Horde
#66 - 2015-01-09 18:19:29 UTC
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
Bat Country
Pandemic Horde
#67 - 2015-01-28 21:37:37 UTC
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
Absolute Order
Absolute Honor
#68 - 2015-02-07 09:22:48 UTC
Go right ahead.

skink

Katrina Bekers
A Blessed Bean
Pandemic Horde
#69 - 2015-02-16 09:10:03 UTC
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
Zymurgy Corp.
#70 - 2015-03-09 11:12:28 UTC
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
Zymurgy Corp.
#71 - 2015-03-20 21:06:04 UTC
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
#72 - 2015-03-21 07:36:07 UTC
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
Zymurgy Corp.
#73 - 2015-03-21 17:52:17 UTC  |  Edited by: Ronix Aideron
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
Bat Country
Pandemic Horde
#74 - 2015-03-23 16:15:59 UTC
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
#75 - 2015-03-26 16:29:16 UTC
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
#76 - 2015-03-26 18:47:19 UTC
wine msiexec /i installer.msi
Lucida Boirelle
University of Caille
Gallente Federation
#77 - 2015-04-05 17:54:06 UTC  |  Edited by: Lucida Boirelle
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
EVE University Hall of Residence
Ivy League Alt Alliance
#78 - 2015-04-06 06:22:41 UTC  |  Edited by: Goongus Flahn
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.

edit: ran on winxp. Took a while, but it worked
MinnaR Mosan
Center for Advanced Studies
Gallente Federation
#79 - 2015-04-20 05:38:49 UTC
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
Republic Military School
Minmatar Republic
#80 - 2015-04-20 13:37:51 UTC  |  Edited by: Neuntausend
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?