Difference between revisions of "Linux"

From Anarchy Online Wiki [AOWiki]
Line 33: Line 33:
 
cd ~/.wine/drive_c/Funcom/Anarchy\ Online
 
cd ~/.wine/drive_c/Funcom/Anarchy\ Online
 
wine Anarchy.exe
 
wine Anarchy.exe
 +
</syntaxhighlight>
 +
 +
== HTML rendering ==
 +
 +
* If the launcher is having problem rendering HTML, install wine gecko manually
 +
 +
<pre>
 +
Could not load wine-gecko. HTML rendering will be disabled.
 +
</pre>
 +
 +
<syntaxhighlight lang="bash">
 +
sudo mkdir /usr/share/wine/gecko/
 +
sudo wget -P /usr/share/wine/gecko/ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86.msi
 +
sudo wget -P /usr/share/wine/gecko/ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== TODO ==
 
== TODO ==
 
* Fix mouse problem
 
* Fix mouse problem

Revision as of 07:44, 27 July 2018


Oudated-clock.png Warning! Work in progress

Install Wine and Dependencies

  • Installation (For Debian based distributions)

<syntaxhighlight lang="bash"> apt install wine winetricks zenity cabextract </syntaxhighlight>

  • Download MS packages using Winetricks

<syntaxhighlight lang="bash"> export WINEARCH=win32 winetricks dotnet20 corefonts fontfix vcrun2005 vcrun6 </syntaxhighlight>

  • Download and install the Old Engine

<syntaxhighlight lang="bash"> cd /tmp wget http://update.anarchy-online.com/download/AO/AnarchyOnline_EP1.exe wine AnarchyOnline_EP1.exe </syntaxhighlight>

  • Run the game from the command line (or you if you ticked Add Desktop shortcut, you shoud have a shortcut in your OS)

<syntaxhighlight lang="bash"> cd ~/.wine/drive_c/Funcom/Anarchy\ Online wine Anarchy.exe </syntaxhighlight>

HTML rendering

  • If the launcher is having problem rendering HTML, install wine gecko manually
Could not load wine-gecko. HTML rendering will be disabled.

<syntaxhighlight lang="bash"> sudo mkdir /usr/share/wine/gecko/ sudo wget -P /usr/share/wine/gecko/ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86.msi sudo wget -P /usr/share/wine/gecko/ https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi </syntaxhighlight>

TODO

  • Fix mouse problem