# architecture 확인하고 i386 추가 설치 dpkg --print-architecture # 결과가 amd64 뿐이면 아래 과정 실행 sudo dpkg --add-architecture i386 && sudo apt update dpkg --print-architecture # buster 는 WineHQ Debian 버전에 따라 적절이 변경한다. echo "deb https://dl.winehq.org/wine-builds/debian/ buster main" | sudo tee -a /etc/apt/sources.list.d/winehq.list sudo apt-get update # install wine stable sudo apt install --install-recommends winehq-stable # 패키지 파일 양이 많은 편이므로 캐시 비워주기 sudo apt-get clean
FAudio
패키지를 별도로 설치해야 한다. FAudio for Debian and Ubuntu - WineHQ Forumslibfaudio0
의 amd64
, i386
패키지를 다운로드하여 설치하거나, 포스팅 아래부분에 OpenSuse Build Server 리포지토리 추가 방법을 따라서 해도 된다.sudo dpkg --add-architecture i386 wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - # focal 은 적당한 버전으로 변경한다. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' sudo apt update sudo apt install --install-recommends winehq-stable
sudo dpkg --add-architecture i386 sudo apt install wine winetricks
# ubuntu sudo apt-get install winetricks # 기타 cd ~/.local/bin wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks
~/.wine
디렉토리 삭제WINEARCH=win32 winecfg
로 32bit로 변경winecfg
실행하여 Window 7
혹은 원하는 버전으로 설정 → Reboot 혹은 wineboot
명령 실행 해야 wine 데몬이 버전을 올바로 인식함.winetricks
를 실행하여 Select the default wineprefix → Install a Windows DLL or component/Install a font
로 필요한 라이브러리와 글꼴 설치# libraries winetricks dotnet20 msxml6 vcrun2008 # fonts winetricks consolas corefonts eufonts lucida tahoma unifont
winetricks gdiplus riched20 riched30
나눔 고딕
으로 하면 글씨도 더 잘 보이고 잘 작동하는 것 같다.—
winetricks gdiplus riched30 wmp10 msxml6 d3dx9_43