手機跑Windows exe程式 - 手機討論

By Carol
at 2022-01-03T09:18
at 2022-01-03T09:18
Table of Contents
幾年前有一個Exagear的專案,能夠將X86翻譯成ARM的指令,配合Wine就能在手機執行電腦
程式,不需要root。
雖然後來Exagear的技術被華為買走,不過Github有俄羅斯人釋出內含Exagear的Termux Pro
ot版。原理是在Termux安裝32位元的Debian Proot環境,再用Wine執行32位元的Windows EX
E。
測試的程式
遊戲Fate Stay Night
https://i.imgur.com/xJNI0ZM.png
foobar2000
https://i.imgur.com/NAKHy3Z.png
Notepad++
https://i.imgur.com/ONgXTmO.png
HoneyView
https://i.imgur.com/1ipVQ9v.png
Chrome可攜版
https://i.imgur.com/Zr6epCU.png
## 安裝過程
手機: Sony Xperia 5 II,Android 11。
1.開啟Termux安裝套件
```
pkg update -y && pkg install tar git -y
```
2. clone這個repo,並加入submodule
```
git clone https://github.com/ZhymabekRoman/Exagear-For-Termux ~/ExaTermux
cd ~/ExaTermux
git submodule init
git submodule update
```
3. 下載解壓縮Debian 10檔案系統
```
wget https://github.com/termux/proot-distro/releases/download/v1.1-debian-rootfs
/debian-buster-i386-2020.12.05.tar.gz
mkdir exagear-fs/ && tar -C exagear-fs/ --warning=no-unknown-keyword --delay-dir
ectory-restore --preserve-permissions --strip=0 -xvf debian-buster-i386-2020.12.
05.tar.gz --exclude='dev'||: && cd exagear-fs/ && mv debian-buster-i386-2020.12.
05/* ./ && rm -rfv debian-buster-i386-2020.12.05/ && cd ../
```
4. 使用腳本登入系統(加old參數是因為有時候登入會無法開啟終端機)
```
chmod +x start-exagear.sh
./start-exagear.sh login --old --shared-tmp
```
5. 這樣32位元的Debian環境就設定好了。首先進行更新
```
apt update && apt upgrade -y
```
6. 安裝XFCE4桌面環境和常用工具
```
apt install vim fonts-noto-cjk xfce4* tigervnc* -y
```
7. 如果APT安裝出現`E: Sub-process /usr/bin/dpkg returned an error code (1)`:
```
cd /var/lib/dpkg/
mv info info.bk
mkdir info
apt update
apt -f install
cd info
mv ./* ../info.bk
cd ..
rm -rf info
mv info.bk info
cd
```
8. 安裝Wine
```
wget -nc https://dl.winehq.org/wine-builds/winehq.key
apt-key add winehq.key
echo "deb https://dl.winehq.org/wine-builds/debian/ buster main" >> /etc/apt/so
urces.list
apt update
apt install winehq-staging winetricks zenity -y
```
9. 啟動Vncserver,第一次啟動會要求設定六位數密碼。
```
vncserver
```
10. 開啟VNC Viewer,輸入`localhost:1`連線
11. 從右上角應用程式按Run Program,搜尋winetricks,執行後Wine會進行更新,再安裝m
ono,大約5分鐘。
https://i.imgur.com/frPh4fv.png
12. 如果Debian沒有聲音,請參考下方Bilibili文章安裝PulseAudio。
13. 接著就可以來試試各種32位元Widnows程式了!
如果想知道如何免Root存取Termux的內部目錄,請看這篇: https://reurl.cc/6E2aor
## 心得
跟Box86/Box64 + Wine比起來,雖然Exagear只能執行32位元的程式,但至少Termux本身是6
4位元的可直接裝32位元的Debian,不需要整個重裝32位元版的Termux。
Exagear唯一的缺點是閉源,導致網路上流傳的版本似乎都是盜版,包括這個Debian的版本
,並且Proot的速度很慢。
## 參考資料
https://github.com/ZhymabekRoman/Exagear-For-Termux
https://www.bilibili.com/read/mobile?id=13733747
--
https://i.imgur.com/qBnCgUO.jpg
https://i.imgur.com/klpjZcQ.jpg
https://i.imgur.com/yLTmoHs.jpg
https://i.imgur.com/WepO17T.jpg
--
程式,不需要root。
雖然後來Exagear的技術被華為買走,不過Github有俄羅斯人釋出內含Exagear的Termux Pro
ot版。原理是在Termux安裝32位元的Debian Proot環境,再用Wine執行32位元的Windows EX
E。
測試的程式
遊戲Fate Stay Night
https://i.imgur.com/xJNI0ZM.png

foobar2000
https://i.imgur.com/NAKHy3Z.png

Notepad++
https://i.imgur.com/ONgXTmO.png

HoneyView
https://i.imgur.com/1ipVQ9v.png

Chrome可攜版
https://i.imgur.com/Zr6epCU.png

## 安裝過程
手機: Sony Xperia 5 II,Android 11。
1.開啟Termux安裝套件
```
pkg update -y && pkg install tar git -y
```
2. clone這個repo,並加入submodule
```
git clone https://github.com/ZhymabekRoman/Exagear-For-Termux ~/ExaTermux
cd ~/ExaTermux
git submodule init
git submodule update
```
3. 下載解壓縮Debian 10檔案系統
```
wget https://github.com/termux/proot-distro/releases/download/v1.1-debian-rootfs
/debian-buster-i386-2020.12.05.tar.gz
mkdir exagear-fs/ && tar -C exagear-fs/ --warning=no-unknown-keyword --delay-dir
ectory-restore --preserve-permissions --strip=0 -xvf debian-buster-i386-2020.12.
05.tar.gz --exclude='dev'||: && cd exagear-fs/ && mv debian-buster-i386-2020.12.
05/* ./ && rm -rfv debian-buster-i386-2020.12.05/ && cd ../
```
4. 使用腳本登入系統(加old參數是因為有時候登入會無法開啟終端機)
```
chmod +x start-exagear.sh
./start-exagear.sh login --old --shared-tmp
```
5. 這樣32位元的Debian環境就設定好了。首先進行更新
```
apt update && apt upgrade -y
```
6. 安裝XFCE4桌面環境和常用工具
```
apt install vim fonts-noto-cjk xfce4* tigervnc* -y
```
7. 如果APT安裝出現`E: Sub-process /usr/bin/dpkg returned an error code (1)`:
```
cd /var/lib/dpkg/
mv info info.bk
mkdir info
apt update
apt -f install
cd info
mv ./* ../info.bk
cd ..
rm -rf info
mv info.bk info
cd
```
8. 安裝Wine
```
wget -nc https://dl.winehq.org/wine-builds/winehq.key
apt-key add winehq.key
echo "deb https://dl.winehq.org/wine-builds/debian/ buster main" >> /etc/apt/so
urces.list
apt update
apt install winehq-staging winetricks zenity -y
```
9. 啟動Vncserver,第一次啟動會要求設定六位數密碼。
```
vncserver
```
10. 開啟VNC Viewer,輸入`localhost:1`連線
11. 從右上角應用程式按Run Program,搜尋winetricks,執行後Wine會進行更新,再安裝m
ono,大約5分鐘。
https://i.imgur.com/frPh4fv.png

12. 如果Debian沒有聲音,請參考下方Bilibili文章安裝PulseAudio。
13. 接著就可以來試試各種32位元Widnows程式了!
如果想知道如何免Root存取Termux的內部目錄,請看這篇: https://reurl.cc/6E2aor
## 心得
跟Box86/Box64 + Wine比起來,雖然Exagear只能執行32位元的程式,但至少Termux本身是6
4位元的可直接裝32位元的Debian,不需要整個重裝32位元版的Termux。
Exagear唯一的缺點是閉源,導致網路上流傳的版本似乎都是盜版,包括這個Debian的版本
,並且Proot的速度很慢。
## 參考資料
https://github.com/ZhymabekRoman/Exagear-For-Termux
https://www.bilibili.com/read/mobile?id=13733747
--
https://i.imgur.com/qBnCgUO.jpg




--
Tags:
手機
All Comments

By Ingrid
at 2022-01-03T10:26
at 2022-01-03T10:26

By Olivia
at 2022-01-03T11:34
at 2022-01-03T11:34

By Zora
at 2022-01-03T12:42
at 2022-01-03T12:42

By Daniel
at 2022-01-03T13:50
at 2022-01-03T13:50

By Edwina
at 2022-01-03T14:58
at 2022-01-03T14:58

By Donna
at 2022-01-03T16:06
at 2022-01-03T16:06

By Eartha
at 2022-01-03T17:14
at 2022-01-03T17:14

By Valerie
at 2022-01-03T18:22
at 2022-01-03T18:22

By Tom
at 2022-01-03T19:30
at 2022-01-03T19:30

By Donna
at 2022-01-03T20:38
at 2022-01-03T20:38

By Callum
at 2022-01-03T21:46
at 2022-01-03T21:46

By Donna
at 2022-01-03T22:54
at 2022-01-03T22:54

By Quanna
at 2022-01-04T00:02
at 2022-01-04T00:02

By Ivy
at 2022-01-04T01:10
at 2022-01-04T01:10

By Belly
at 2022-01-04T02:18
at 2022-01-04T02:18

By Ursula
at 2022-01-04T03:26
at 2022-01-04T03:26

By Jacky
at 2022-01-04T04:34
at 2022-01-04T04:34

By Yuri
at 2022-01-04T05:42
at 2022-01-04T05:42

By Caroline
at 2022-01-04T06:50
at 2022-01-04T06:50

By Dora
at 2022-01-04T07:58
at 2022-01-04T07:58

By Todd Johnson
at 2022-01-04T09:06
at 2022-01-04T09:06

By Michael
at 2022-01-04T10:14
at 2022-01-04T10:14

By Elma
at 2022-01-04T11:22
at 2022-01-04T11:22

By Lauren
at 2022-01-04T12:30
at 2022-01-04T12:30

By Annie
at 2022-01-04T13:38
at 2022-01-04T13:38

By Jake
at 2022-01-04T14:46
at 2022-01-04T14:46

By Dora
at 2022-01-04T15:54
at 2022-01-04T15:54

By Tom
at 2022-01-04T17:02
at 2022-01-04T17:02

By Irma
at 2022-01-04T18:10
at 2022-01-04T18:10

By Kelly
at 2022-01-04T17:12
at 2022-01-04T17:12

By Gilbert
at 2022-01-04T18:20
at 2022-01-04T18:20

By Kyle
at 2022-01-04T17:12
at 2022-01-04T17:12

By Elizabeth
at 2022-01-04T18:20
at 2022-01-04T18:20

By James
at 2022-01-04T17:12
at 2022-01-04T17:12

By Zenobia
at 2022-01-04T18:20
at 2022-01-04T18:20

By Caroline
at 2022-01-04T17:12
at 2022-01-04T17:12

By Elma
at 2022-01-04T18:20
at 2022-01-04T18:20

By Ida
at 2022-01-04T17:12
at 2022-01-04T17:12
Related Posts
airpods pro 虎年特別版

By Tracy
at 2022-01-03T07:58
at 2022-01-03T07:58
iPhone 14最新渲染圖!剪掉瀏海 首次搭4

By Cara
at 2022-01-02T22:13
at 2022-01-02T22:13
Pixel 6 最新Bug「螢幕凍結」超惱人!Goo

By Christine
at 2022-01-02T21:04
at 2022-01-02T21:04
三星a52s選取時出現閃光

By Frederic
at 2022-01-02T19:53
at 2022-01-02T19:53
台灣電信業者總用戶數

By Rachel
at 2022-01-02T19:23
at 2022-01-02T19:23