Pages

Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts

Tuesday, August 30, 2016

World of Warcraft on Linux with Wine with Screenshots and Video

Installing World of Warcraft (WoW) in Ubuntu or Linux Mint (with Wine) is pretty easy, however there are various crashes that can occur, especially if you're not using the latest Wine and also, the FPS can be pretty low without a few tweaks, so I though I'd document everything I did to get World of Warcraft to work properly on my laptop (Nvidia Optimus, so I was able to test the game with both Nvidia and Intel graphics), even in large scale PvPs and hopefully, this will help you play WoW under Ubuntu or Linux Mint.

Install World of Warcraft in Ubuntu / Linux Mint

1. Download the WoW installer (you can of course use a CD/DVD instead).

2. Optional but recommended Install the latest Wine development release:
sudo add-apt-repository ppa:wine/wine-builds
sudo apt-get update
sudo apt-get install --install-recommends wine-devel winehq-devel

For better FPS with the dxd9 gxapi, you can use Wine Staging with the CMST option enabled (but note that wine-staging tends to get buggy from time to time).

3. Right click the downloaded installer, right click it and select Open With > Wine Windows Program Loader (update: with newer Wine versions, double clicking the installer should work too):

Launch with Wine Ubuntu

Then install Battle.net:

Battle.net installer Ubuntu

Update: a recent Battle.net update broke the UI for Linux users with Intel graphics. You can find a workaround here: Partial Workaround For Black / Distorted Battle.net UI On Linux (Wine) With Intel Graphics

4. And finally, launch Battle.net from the menu / Dash (the icon should also be on your desktop unless you've deselected that option) and install World of Warcraft:

Battle.net Ubuntu

Fixing various potential World of Warcraft crashes (Ubuntu / Linux Mint w/ Wine)
A. If the World of Warcraft installer / Battle.net crashes

If Battle.net crashes on start:

WoW Battle.net crash Ubuntu

Fix it by launching winecfg (type "winecfg" in a terminal) and on the Libraries tab, under "New override for library", enter "dbghelp" (without the quotes), then click "Add". Next, select "dbghelp" under "Existing overrides" and click "Edit" and in the new pop-up, set it to "Disable":

winecfg dbghelp Ubuntu

Update August 2016: after some Battle.net update, the app crashes due to some issues with msvcp140. To fix this issue, open winecfg (type "winecfg" in a terminal), and on the Libraries tab, enter "msvcp140", then click "Add".

Next, select "msvcp140", click "Edit", and set it to "Native then Builtin".

Update 2 August 2016: if Battle.net still crashes, change the "dbghelp" library override settings (see above) to "Native, then Builtin".


B. If you're on 64bit and the World of Warcraft 64bit game client crashes with an error similar to this:

ERROR #132 (0x85100084) Fatal exception!

Program: C:\Program Files\World of Warcraft\Wow-64.exe
ProcessID: 57
Exception: 0xC0000005 (ACCESS_VIOLATION) at 0033:0000000005A11A71

The instruction at "0x0000000005A11A71" referenced memory at 
"0x00007F38ACD6C028". The memory could not be "read".
 
... you'll need to force World of Warcraft to use the 32bit client. If you use Battle.net to launch the game (that's only possible if you don't use OpenGL, see below), you can change WoW to use the 32bit client from the Battle.net settings available via left-click on the blue icon on the top-left Battle.net corner - the menu is not responsive and unfortunately you have to click quite a few times to get it to work.

Or, you can launch World of Warcraft using a script - adding "-noautolaunch64bit" will force the 32bit WoW client to be launched instead of the 64bit one. If you're already using a script, simply add "-noautolaunch64bit" at the end of your WoW launch command. Or, if you're not using a script already, create a new text file in your home folder - let's call it "wow" and in this file, paste the following:

on Ubuntu / Linux Mint 32bit:

#!/bin/sh

WINEDEBUG=-all wine "/home/YOURUSERNAME/.wine/drive_c/Program Files/
World of Warcraft/WoW.exe" -noautolaunch64bit

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)

on Ubuntu / Linux Mint 64bit:

#!/bin/sh

WINEDEBUG=-all wine "/home/YOURUSERNAME/.wine/drive_c/Program Files 
(x86)/World of Warcraft/WoW.exe" -noautolaunch64bit

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)


Then save the file and make it executable using the following command (assuming you've created the "wow" file in your home directory):
chmod +x ~/wow
 
Then double click the "wow" file and run it to launch WoW (you can also launch it from the command line using "~/wow", or edit the World of Warcraft desktop file to point to your newly created script).

C. 64bit only: if you're using Bumblebee and World of Warcraft crashes with the following error:
X Error of failed request:  GLXUnsupportedPrivateRequest
Fix it by installing the 32bit virtualgl-libs:
sudo apt-get install virtualgl-libs:i386

D. If World of Warcraft fails at the login screen (it's unable to connect) when launching the game through Battle.net and you're using the OpenGL gxapi, you'll find a work-around below, under the WoW Linux/Wine optimizations and tweaks - see "A. Use OpenGL".

Optimizations and tweaks (increase the World of Warcraft FPS under Linux, etc.)


A. Use OpenGL With the latest World of Warcraft 7.0.3 patch, using OpenGL is no longer usable due to the various visual glitches it causes, so I no longer recommend it. However, I'll leave the instructions here in case you want to try it.

There are numerous reports saying that World of Warcraft runs better using OpenGL. In my test, I did indeed get a much higher FPS when using Nvidia graphics, but not using Intel graphics. However, this depends on hardware so it may not be the case for you.

Unfortunately, running World of Warcraft with OpenGL from Battle.net is not possible at the time I'm writing this article, at least it wasn't in my test (and there are others who are experiencing the same issue) because World of Warcraft fails to connect. There is a work-around though.

To get World of Warcraft to connect when using OpenGL, you need to launch it using a script. To do this, create a new text file in your home folder - let's call it "wow" and in this file, paste the following:

On Ubuntu / Linux Mint 32bit:


#!/bin/sh

WINEDEBUG=-all wine "/home/YOURUSERNAME/.wine/drive_c/Program Files/
World of Warcraft/WoW.exe" -opengl

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)

On Ubuntu / Linux Mint 64bit:


#!/bin/sh

WINEDEBUG=-all wine "/home/YOURUSERNAME/.wine/drive_c/Program Files 
(x86)/World of Warcraft/WoW.exe" -opengl

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)

For Nvidia-users only: for threaded OpenGL performance optimization, add "__GL_THREADED_OPTIMIZATIONS=1" to the script you've just created, before "wine". After modifying the script, it should look like this:

- On Ubuntu / Linux Mint 32bit:


#!/bin/sh

WINEDEBUG=-all __GL_THREADED_OPTIMIZATIONS=1 wine "/home/YOURUSERNAME/
.wine/drive_c/Program Files/World of Warcraft/WoW.exe" -opengl

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)

- On Ubuntu / Linux Mint 64bit:


#!/bin/sh

WINEDEBUG=-all __GL_THREADED_OPTIMIZATIONS=1 wine "/home/YOURUSERNAME/
.wine/drive_c/Program Files (x86)/World of Warcraft/WoW.exe" -opengl

(replace "YOURUSERNAME" with your username; you may need to adjust your WoW.exe path!)


Note: I've used "WINEDEBUG=-all" to turn off debugging output to improve performance a little bit further.

Next, make the script executable (the following command assumes you've called the script "wow" and created it in your home folder):
chmod +x ~/wow
Then double click the "wow" file and run it to launch WoW (you can also launch it from the command line using "~/wow", or edit the World of Warcraft desktop file to point to your newly created script).

That's not all. To boost the WoW FPS, also perform the following tweak: press ALT + F2, enter "regedit" (without the quotes) and:
  • navigate to HKEY_CURRENT_USER -> Software -> Wine, select the Wine folder and right click it, then select New -> Key and rename the newly created key to "OpenGL" (without the quotes);
  • select the "OpenGL" key, right click it and select New -> String Value;
  • rename "New Value #1" to "DisabledExtensions" (without the quotes);
  • double click on the newly created "DisabledExtensions" and enter "GL_ARB_vertex_buffer_object" (without the quotes) into the "value" field.

B. Intel graphics only

Driconf Ubuntu

If you see black textures in the game or the game crashes, enable S3TC texture compression by following the steps below:

Firstly, install driconf:


sudo apt-get install driconf
 
Then launch driconf: it should show up as "3D Acceleration" in the menu/Dash (you can also launch it by pressing ALT + F2 and entering: "driconf") and on the Image Quality tab, set "Enable S3TC texture compression even if software support is not available" to "Yes", then close the window.

C. If you're still getting low FPS, here are a few game configuration tweaks (Config.wtf)

To be able to use the tweaks below, you need to run World of Warcraft at least once, or else the configuration file doesn't exist.

Open the Config.wtf file with a text editor (the file should be located under ~/
.wine/drive_c/Program Files (x86)/World of Warcraft/WTF/) and paste this:
SET M2UseShaders "0"
SET UseVertexShaders "0"
SET useWeatherShaders "0"
SET ffxGlow "0"
SET ffxDeath "0"
SET ffxSpecial "0"
SET weatherDensity "0"
SET reflectionMode "0"
SET maxFPS "60"
SET ffx "0"
SET maxFPSbk "5"
SET mapShadows "0"
Then save the file.

Other tweaks:
  • Using some WoW addons can considerably lower your FPS so if the FPS is bad, you can try removing them (note that you'll have to remove the addons and not just disable them!) and see if that improves your FPS;
  • For better performance, you can try the latest Wine Staging.
  • For Ubuntu 14.04 and 14.10 / Linux Mint 17 and 17.1, you can use the Oibaf PPA (it requires Linux kernel >= 3.17 and wine from THIS PPA) which includes updated graphics drivers as well as Gallium Nine support which should get you a FPS boost in World of Warcraft with Direct3D.
  • Update your graphics drivers - for Nvidia, you can use a PPA.

Update: for a couple of Curse-compatible applications that work on Linux, which you can use to install or update WoW addons via curse.com, see THIS article.

Are you playing World of Warcraft under Linux? What other optimizations / tweaks have you used?

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Monday, August 29, 2016

How to install Google SketchUp Make 2016 on Linux with Wine

How to install Google SketchUp Make 2016 on Linux with Wine...

Update on SketchUp Make 2016 Maintenance release

  • This maintenance release fixes a Windows-only bug introduced in the first release of SketchUp 2016, also known as “M0” [version numbers 16.0.19912 (Win 64-bit); 16.0.19911 (Win 32-bit)] where uninstalling SketchUp resets your default Internet browser. To avoid running into this issue, leave SketchUp 2016 “M0” installed prior to installing this update – i.e., install SketchUp 2016 M1 over your existing version of SketchUp 2016 M0.
  • This maintenance release is for both Windows and OS X and addresses a number of issues.
  • See complete list of updates

How to install Google SketchUp Make 2016 on Ubuntu 16.04 using Wine


Step 1: Install Wine 1.9.x
sudo add-apt-repository ppa:wine/wine-builds

sudo apt-get update

sudo apt-get install --install-recommends wine-staging

sudo apt-get install winehq-staging
Configure Wine for SketchUp by installing additional packages if prompted  
run winecfg
First change the Windows Version to Windows 7


Under Wine Configuration menu, click on Libraries and add ‘riched20’ as a new library. Apply changes


Download Windows version of SketchUp Make 2016
Right-click on the exe and click ‘Open with Wine Windows Program Loader



Follow the installation wizard to complete the installation



 Open Sketch 2016 properties menu, under command, add ‘/DisableRubyAPI’ at the end


Download the “mfc100u.dll” library frome here, and copy it in system32 wine folder. You can enable hidden folders under Nautilus with following key combination “ctrl+H”. In home folder, navigate to .wine/drive_c/windows/system32/ and copy it there.


Launch SketchUp Make 2016


Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Friday, August 26, 2016

Happy 25th Birthday Linux

Happy 25th Birthday Linux!


Wednesday, June 15, 2016

Vineyard now has CrossOver support Wine Staging features and more

Vineyard for Ubuntu and Linux has seen some development during the past few weeks and has received bug-fixes and new features! Some of the more advanced functionality – Vineyard now supports CodeWeavers CrossOver – New support has been added for Wine-Staging !


Here are some of the changes from the last two weeks of development:

New Features:
  • Support for CrossOver.
  • Auto-detection of supported Wine features.
  • Support for a number of Staging features and common patches:
    • CSMT (both dll and patched versions, ie. Wine-Staging, CrossOver and custom Wine versions are all supported)
    • DXVA2 VAAPI
    • EAX Emulation
  • “Run in a terminal” option when launching Windows executables (with vineyard-launcher).
Fixes and Improvements:
  • Safer detection of installed Wine versions.
  • Support for user installed Wine versions in $HOME/.local/share/wineversions.
  • Better support for launching programs from desktop shortcuts.
  • Updated the Windows version information to match the latest Wine releases.
  • Added support for 64bit Windows XP configuration.

And since a picture is worth a thousand words:


The new prefix creation dialogue

New builds in the PPA

I’ve overhauled the packaging of Vineyard, and we now have builds back up for all LTS (long term support) Ubuntu releases going back to 12.04 (Precise) as well as for 15.10 (Wily) and 16.04 (Xenial). 16.04 deprecated the python-support package in favor of dh-python (in line with Debian), so Vineyard can now be built using both.

The name of the vineyard-testing PPA has also been changed to “PPA for Vineyard” as it really is the current stable PPA; the link is the same, so there’s no need to change your APT configuration.

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Monday, November 23, 2015

WineHQ has released Wine 1.8-rc1

WineHQ has released Wine 1.8-rc1, The Wine development release 1.8-rc1 is now available.

This is the first release candidate for the upcoming Wine 1.8. Please give this release a good testing to help us make 1.8 as good as possible.

What's new in this release:
  • Bug fixes only, we are in code freeze.
The source is available now. Binary packages are in the process of being built, and will appear soon at their respective download locations.

 Bugs fixed in 1.8-rc1 (total 54):

   8712  amstream video demo does not play because of IDirectDrawMediaStreamImpl_CreateSample stub
   9872  Leisure Suite Larry 7 fails to run in WinXP mode
  16782  Sea3D chat text unreadable
  21879  Word95 can't create new document
  23817  Creative Writer 2 can't show images in .max files
  25263  Biet-O-Matic calculates shipping cost wrong for German locale
  25843  Wine causes terminal to lose some inputrc settings
  26034  DNAsp5 crashes when trying to copy text from an output
  27664  Various Telltale games crash on startup when a joystick is plugged in (application provides EnumDevice callback with wrong calling convention)
  27859  Task Coach: Crashes on start (uses python2.7)
  28729  EasyBCD: bcdedit complains about lack of privileges (import of registry hive using native API fails/wineserver token privilege check)
  29206  Mystery Cases - Madame Fate (Bigfish games): Director Player Error:  Unable to load movie playlist
  30588  Houdini 12.x (3D animation tool) crashes on startup
  30855  Rhymes (Russian rhymes dictionary) doesn't work correctly
  31889  Cmd testrunner fails in case of mismatches on synchronization lines
  32639  Sega Rally Revo sound stuttering
  32701  The Dame In Black Case: installer fails when registering msdxm6.ocx (needs 'HKLM\\Software\\Microsoft\\MediaPlayer' key 'Installation DirectoryLFN' value)
  33718  comctl32:propsheet Add button test failure
  34123  Sonic & All-Stars Racing Transformed: the game fails to initiate due to Wine failing to mount its CD images
  34261  Sonic and All-Stars Racing Transformed (Steam) crashes during intro video
  34953  Message "Application tried to create a window, but no driver could be loaded. Make sure that your X server is running and that $DISPLAY is set correctly." cannot be suppressed
  35659  Dassault Systemes CATIA v5 reports 'no certified opengl libary has been found. Check your system installation' on startup (opengl32.dll version resource 'LegalCopyright' mismatch)
  35688  iMesh 7.x reports 'You are using an older version of Windows Media Player!' (needs WMP 10 version registry key)
  35718  Multiple games have extreme flicker, stutter, slowdown (Path of Exile, Roller Coaster Tycoon, Counter Strike: Global Offensive, Warframe, Crysis, Anno 1602,  Splinter Cell: Blacklist)
  35970  Wine del returns 1 on error unlike on Windows
  36255  World of tanks doesn't run after upgrade to 0.9
  36428  valgrind shows a possible leak in scrrun/tests/dictionary.c
  37161  D3D_SHADER_VARIABLE_FLAGS is not defined in d3dcommon
  37200  Warhammer 40k: Kill Team (Steam version) does not start
  37203  Age of Empires II Conquerors 800x600 launch screen black on wine versions later than 1.7.13
  37595  cls command does not fill screen attributes
  37799  Children of the Nile: crash on start when not using virtual desktop
  37881  Multiple applications crash on unimplemented function msvcp120.dll._Cnd_init (Livescribe Echo Desktop 3.0, Acrobat Reader DC 2015)
  37955  USB DAC sound problems
  37994  AVRStudio 4.18: Editor window text rendered incorrectly (transparent tab characters)
  38103  Process Hacker 2.x needs ntoskrnl.exe.ProbeForRead
  38252  Candleworks FX Trade Station 2 updater crashes
  38391  Deus Ex: Human Revolution does not properly detect speaker configuration
  38427  Desura client 0.0.20.2 crashes on unimplemented function msvcp120.dll._Thrd_current
  38600  Planetary Annihilation needs msvcp110.dll._Cnd_init
  39018  A9CAD fails to start, throws 'X Error of failed request:  BadValue (integer parameter out of range for operation)'
  39045  Accuweather.com download page displays only the background image in built-in iexplore
  39212  cmd:batch fails if privileges not high enough
  39230  odbccp32:misc fails if privileges not high enough
  39323  StarForce 3.x: Protection Environment Driver v1.x 'sfdrv01.sys' crashes on unimplemented function ntoskrnl.exe.ExDeleteNPagedLookasideList (Blazing Angels Squadrons of WWII Demo)
  39347  World of Warships 0.4.x/0.5.x: incorrect water surface height calculated for unknown reasons, causing ships to appear floating in the air (with GLSL shader backend)
  39362  Blazblue Calamity Trigger crash on press start screen
  39384  Tencent QQ 7.6 frame manager kernel driver 'QQFrmMgr.sys' crashes on unimplemented function ntoskrnl.exe.CmRegisterCallback
  39426  skype crash - unimplemented combase.dll.RoGetActivationFactory
  39468  Adobe Photoshop CS2 installer triggers __stack_chk_fail() on Wine builtin 'msiexec'
  39517  No music or voices in Skyrim after intro video
  39581  iMesh 7.x installer warns about old version of Microsoft Windows Media Player (missing 'HKLM\\SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\{6BF52A52-394A-11d3-B153-00C04F79FAA6}' registry key)
  39613  Microsoft .NET Framework 1.1 fails to install with Wine 1.3.2+
  39630  Issue while building wow64 for Slackware 14.1

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Friday, November 13, 2015

How to Install GardenCAD on Mac with CrossOver

We are asked about Windows software running in CrossOver all the time. The range of programs varies so much that it's always questionable on what it might take to get the application running. Most of the time, it's easy.

Recently, we received a request for a second look at GardenCAD and it's big brother, gCADPlus. To our surprise, the team for gCADPlus checked us out a few years ago and put together a handy walk-through for our product.

What they didn't know, we've made it easier than ever to install an unsupported program, like GardenCAD. To be clear, an unsupported program is a Windows program that has not been regularly tested by a member of the CodeWeavers team. Before we get too far, let's talk about what it takes to install an unsupported program.

First, open CrossOver (on your Mac today):

CrossOver Opening Screen
After you click on "Install a Windows Application", search for your application:

Search for gCAD
When your application doesn't show up, it's some "Other Application" that CrossOver doesn't know about... and that's okay. More applications than ever run in CrossOver.

There's no reason to give up here, make the selection of "Other Application" and open the next section of CrossOver, Select an Installer and click "Choose Installer File":

Choose Installer File...
Show CrossOver where your installer file is, highlight it and click, "Use this Installer":

Use This Installer
CrossOver will look like this:

CrossOver and gCADplus
Click Install!

For gCADplus, the installer starts, completes and gCADplus launches!

gCADplus Launches
And, it does things:

gCADplus in CrossOver
It really is that easy!

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Friday, September 4, 2015

CrossOver azaz Windows alkalmazások Linuxon (és Macen)

Ãœdv Mindenkinek!

Szeretném megosztani veletek az élményeim, illetve tapasztalatom a CrossOver nevű szoftverrel linuxon.
Először is a gépemről.:
Oprendszer: Zorin OS 9 (64bit) (Ubuntu 14.04-es alapon fekszik)
Asztali felület: Lubuntu-desktop
AMD Athlon II P360 Dual-core 2.3 Ghz processzor
3GB Ddr3 Ram
Amd Radeon HD 6650m (1 GB) videókártya

Tehát amint látjátok nem a legfelső kategória, de épp ezért volt érdekes számomra látni, hogyan is futnak a Windowsos programok.

Screenshotokat is készítettem azért, hogy láthassatok 1 telepítési folyamatot is esetleg. A CrossOver beszerzése nagyon egyszerű volt csak fel kell lépni az oldalukra és le kell tölteni az adott distrora.

A letöltés végeztével, láttam egy .bin fájlt, terminálba beindítottam, nagyon egyszerű telepítése van, mindent elvégez saját magának. Itt találtam 1 kisebb bugot, Lubuntu/LXDE asztalnál resetelni kell a desktopot, hogy az ikont a telepítés után létrehozza. Én egyszerűen csak létrehoztam 1 indítóikont neki, gondoltam így egyszerűbb lesz. Miután sikeresen feltelepítettem, létrehoztam az ikont, illetve tökéletesen beindult, felhozott 1 terminált miszerint a szükséges fájlokat le kell töltenie, itt kér majd adminisztrátor engedélyt, hogy azokat letölthesse. Mikor minden kész volt egy egész kis pofás GUI-t találtam magam előtt. Egyszerű az elrendezése és könnyen használható, amit viszont hiányoltam belőle a Magyar nyelv. De ez elhanyagolható úgy gondolom. Miután minden készen állt, úgy éreztem muszáj kipróbálnom valamit. Támogatott szoftvereknél megtaláltam a GRID nevű játékot. Régen PlayOnLinux segítségével már megpróbáltam befuttatni, sajnos se azzal, se ezzel nem sikerült elérnem ezt. Kicsit utána olvasgatva rájöttem, hogy az AMD driverekkel van a probléma, szóval ha Open Source drivert (Radeon driver) használnák valószínűleg beindulna. Miután feladtam a GRID-el való szórakozást úgy döntöttem, egy régi MMORPG-t sok ember régi kedvencét a Metin2-t fogom letesztelni. Sikerült a telepítés beindult, a játék és felettébb jól megy. Egy kis összehasonlítás kedvéért feltettem ugyan azt a klienst PlayOnLinux segítségével is. A CrossOver által futtatott Metin2 20 fps-el többet produkált, ez számomra nagyon sokat jelentett. Mert így van rá esély, hogy a többi játék is jobban produkálna. Ezek után úgy döntöttem, nézzük meg az egyik fontos szoftvert amit emberek nagy tömege használ naponta és ez a Microsoft Office. (Igen, tudom van Libreoffice, viszont én személy szerint találkoztam már pár hibával ha docx/doc formába mentek, esetleg ppt készítésnél.) Tehát, gondoltam kipróbálom.

Mivel Office 2013-al rendelkezem gondoltam felteszem azt és nézzük, hogyan is produkál. Sajnálatos módon ez is besült, ilyenkor döntöttem úgy, hogy megkérdezem a CrossOver embereit hátha tudnak nekem segíteni. Nagyon hamar kaptam a választ (olyan 10-15 perc volt kb), hogy nemsokára megérkezik a Crossover15 ami már támogatni fogja, a 2013-mas Office-t is. Úgy döntöttem leszedem, hát az Office 2010-et. Minden hiba nélkül települt, működik, nem lassú nem fagy be.
Összegezve: Mint a Winenak a CrossOvernek is vannak hibái. De a GUI amit létrehoztak, az egyszerűség, hogy nem terhelik meg a felhasználókat mindenféle beállítási lehetőséggel, maximum akkor kell hozzányúlni a beállításokhoz, ha valamilyen nem támogatott szoftvert akarunk telepíteni.

Végezetül megéri ? Szerintem Igen. Játékokban kicsivel gyorsabb mint társai, így aki Windows játékokat szeretne játszani, annak ajánlom. Illetve, Windowsos programok százai támogatottak alapból, szóval ha nem szeretnél megszabadulni Windowson használt programjaidt

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

CodeWeavers CrossOver 14.1.6 ChangeLog

CodeWeavers recently released CrossOver 14.1.6 for Linux and Mac. Gaming performance continues to advance with this release. Their are important fixes for Mac OSX El Capitan RHEL CentOS and Ubuntu in this release. The full change log is provided below.

 You Can use promo code TOM23 in CodeWeavers store and save 20% off the normal retail price.

  14.1.6 CrossOver - September 2, 2015
  • Mac OS X:
    • Fixed a problem which caused CrossOver to crash on El Capitan when selecting a bottle in the GUI.
  • Application Support:
    • Fixed a bug which caused Mamut Business Software to crash during installation.
  • Linux:
    • Fixed a problem which caused CrossOver to fail to load libX11 on RHEL / CentOS 6.7.
    • Fixed a problem in which CrossOver would complain about unmet dependencies of libosmesa6 on Ubuntu 14.04.3.
Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

CodeWeavers CrossOver 14.1.6 has been released

I am delighted to announce that CodeWeavers has just released CrossOver 14.1.6 for both Mac OSX and Linux.  CrossOver 14.1.6 has important bug fixes for both Mac and Linux users.

Mac customers with active support entitlements will be upgraded to CrossOver 14.1.6 the next time they launch CrossOver Mac.  Linux users can download the latest version from https://www.codeweavers.com/.

Change Log For CrossOver Mac and Linux :

14.1.6 CrossOver - September 2, 2015
  • Mac OS X:
  • Application Support:
    • Fixed a bug which caused Mamut Business Software to crash during installation.
  • Linux:
    • Fixed a problem which caused CrossOver to fail to load libX11 on RHEL / CentOS 6.7.
    • Fixed a problem in which CrossOver would complain about unmet dependencies of libosmesa6 on Ubuntu 14.04.3.
Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.