Last active
January 21, 2025 09:13
-
-
Save psilore/57c51579ab09b78d77839c8c2910eafe to your computer and use it in GitHub Desktop.
ascension-debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Debian, Ubuntu | |
sudo apt update && sudo apt install wine winetricks mono-complete | |
#Wine bottle / prefix | |
export WINEPREFIX="/home/$USER/.config/projectascension/WoW" && export WINEARCH=win32 | |
#Make directory | |
mkdir -p /home/$USER/.config/projectascension/WoW && cd /home/$USER/.config/projectascension | |
#Configure wine | |
wget https://dl.winehq.org/wine/wine-mono/6.3.0/wine-mono-6.3.0-x86.msi && wine msiexec /i wine-mono-6.3.0-x86.msi && winetricks win10 ie8 corefonts dotnet45 vcrun2015 | |
#Go to install folder and download Launcher | |
cd /home/$USER/ && wget https://download.ascension-patch.gg/update/ascension-launcher-80.AppImage | |
#Allow execution rights for Launcher and execute. | |
chmod +x ascension-launcher-80.AppImage && ./ascension-launcher-80.AppImage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 15 Produces the following error message, but wine is installed.
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32:i386"
wine: WINEARCH is set to 'win32' but this is not supported in wow64 mode.
Line 19 download doesn't work.