From 93e80edc9170e7d4eae4e91e0398157dd4e5c8a1 Mon Sep 17 00:00:00 2001 From: aiminick Date: Mon, 9 Aug 2021 13:51:56 +0800 Subject: [PATCH] Update box64.md --- docs/notes/box64.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/notes/box64.md b/docs/notes/box64.md index 4981d4c..443d5cb 100644 --- a/docs/notes/box64.md +++ b/docs/notes/box64.md @@ -87,3 +87,28 @@ cd ~/Downloads && wget https://raw.githubusercontent.com/Winetricks/winetricks/m sudo chmod +x winetricks && sudo mv winetricks /usr/local/bin/ env LANG=zh_CN WINEPREFIX="/opt/win32/" https_proxy="http://x.x.x.x:xxxx" box86 winetricks --gui ``` + +# Wine ENV Settings + +#### lang and fonts + +``` +apt install locales +dpkg-reconfigure locales +apt install xfonts-intl-chinese xfonts-wqy ttf-wqy-microhei xfonts-intl-chinese wqy* +apt install ttf-mscorefonts-installer +``` + +**env** + +``` +export LC_ALL="zh_CN.UTF-8" +export LANG="zh_CN.UTF-8" +export LANGUAGE="zh_CN.UTF-8" + +export DISPLAY=:0 +export WINEPREFIX='/opt/win32' +``` + + +