Skip to content

Instantly share code, notes, and snippets.

@qsimpleq
Last active September 18, 2018 12:26
Show Gist options
  • Save qsimpleq/f6c26d8745dc84184f74710652193e98 to your computer and use it in GitHub Desktop.
Save qsimpleq/f6c26d8745dc84184f74710652193e98 to your computer and use it in GitHub Desktop.
# этап 1
sudo dpkg --add-architecture i386 \
&& sudo wget -nc https://dl.winehq.org/wine-builds/Release.key \
&& sudo apt-key add Release.key \
&& sudo apt-add-repository -y 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main' \
&& sudo add-apt-repository -y ppa:paulo-miguel-dias/mesa \
&& sudo apt-get update
&& sudo apt -y dist-upgrade
# этап 2
sudo apt install -y wine-staging wine-staging-compat mesa-vulkan-drivers mesa-vulkan-drivers:i386 vulkan-utils
&& sudo wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks -O /usr/local/bin/winetricks \
&& sudo chmod a+x /usr/local/bin/winetricks
# этап 3
wow="$HOME/WoW"
WINEPREFIX="$wow" winecfg
# этап 4
dxvk_version="0.72" \
&& wget "https://github.com/doitsujin/dxvk/releases/download/v$dxvk_version/dxvk-$dxvk_version.tar.gz" -O "$wow/dxvk-$dxvk_version.tar.gz" \
&& tar xzpf "$wow/dxvk-$dxvk_version.tar.gz" \
&& WINEPREFIX="$wow" winetricks "$wow/dxvk-$dxvk_version/setup_dxvk.verb"
# этап 5
WINEPREFIX="$HOME/WoW" wine64 start /unix "/media/mf/ECA24A1EA249EDA0/WoW Circle 7.3.5/launcher_freakz-64.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment