Skip to content

Instantly share code, notes, and snippets.

@dejanr
Forked from Caffe1neAdd1ct/eve-online-install.md
Created November 19, 2018 23:47
Show Gist options
  • Save dejanr/857773d0653d2d33952db14f3e9ebffd to your computer and use it in GitHub Desktop.
Save dejanr/857773d0653d2d33952db14f3e9ebffd to your computer and use it in GitHub Desktop.
Eve Online with Wine and Arch Linux
## enable multilib see https://wiki.archlinux.org/index.php/Multilib
sudo vim /etc/pacman.conf
## this is not a comprehensive list as installed on an existing system, look for errors in the terminal after running the Eve Launcher exe
sudo pacman -S wine wine_gecko winetricks q4wine wine-mono lib32-gnutls samba lib32-mpg123 lib32-sdl lib32-libldap lib32-libpulse
mkdir ~/Wine
cd ~/Wine
WINEARCH=win32 WINEPREFIX=~/Wine/win32 winecfg
WINEARCH=win64 WINEPREFIX=~/Wine/win64 winecfg
WINEARCH=win32 WINEPREFIX=~/Wine/eve32 winecfg
WINEARCH=win32 WINEPREFIX=~/Wine/eve32 winetricks d3dx9 corefonts vcrun2005
## Download the Launcher installer from their website (update the version number on the command below)
WINEARCH=win32 WINEPREFIX=~/Wine/eve32 wine ~/Downloads/EveLauncher-1045952.exe
## Save this command as a desktop file or bash script
WINEARCH=win32 WINEPREFIX=~/Wine/eve32 wine ~/Wine/eve32/dosdevices/c:/EVE/Launcher/evelauncher.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment