参考
https://blog.csdn.net/buildcourage/article/details/80871141
1. 通过WINE, 确认为32位系统, 安装 source insight 3.5 / MSOffice2007/网易云音乐.
2. 有些应用无法通过WINE安装, 通过scrcpy控制手机上的应用即可. sudo snap install scrcpy
/snap/bin/scrcpy ### USB 连接.
Wi-Fi 连接方式
注意,要使用 Wi-Fi,仍然需要每次先用 USB 连接手机一次,实用性还不是特别高(本来就想在忘记带手机线的情况下的)。
其实就是启用 android 手机端的 adbd的 TCP功能.
1. USB 连接手机. 确认手机的IP: 192.168.43.106
2. ubuntu 端执行 adb tcpip 5555; adb connect 192.168.43.106:5555
3. 拔下手机, 然后正常运行 scrcpy
4. 要切换回USB模式:ubuntu执行 adb usb
安装wine
-
sudo dpkg --add-architecture i386
-
wget -nc https://dl.winehq.org/wine-builds/winehq.key
-
sudo apt-key add winehq.key
-
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
-
sudo apt-get install --install-recommends winehq-stable
-
-
sudo rm /usr/share/applications/wine.desktop
-
sudo apt install winetricks
-
winetricks 安装字体 wqy
-
-
编辑 font.reg 文件.
-
-
REGEDIT4
-
-
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink]
-
"Lucida Sans Unicode"="wqy-microhei.ttc"
-
"Microsoft Sans Serif"="wqy-microhei.ttc"
-
"Tahoma"="wqy-microhei.ttc"
-
"Tahoma Bold"="wqy-microhei.ttc"
-
"SimSun"="wqy-microhei.ttc"
-
"Arial"="wqy-microhei.ttc"
-
"Arial Black"="wqy-microhei.ttc"
-
-
然后执行 wine regedit font.reg
wine 区分 32 / 64位
-
WINEARCH=win32 WINEPREFIX=~/.win32 winetricks corefonts vcrun6 mfc40u #建立32位的运行环境
安装的一些东西需要运行是, 最好使用desktop
-
[Desktop Entry]
-
Name=腾讯QQ
-
Type=Application
-
StartupNotify=true
-
Icon=QQ
-
Exec=env WINEPREFIX=/home/wayne/.win32 LANG=zh_CN LC_ALL=zh_CN.UTF-8 wine C:\\Program\ Files/Tencent/QQ/Bin/QQ.exe ### 设置运行环境很重要
也可以把
WINEARCH WINEPREFIX 放到环境变量里边.
阅读(7202) | 评论(0) | 转发(0) |