WSA 已经在 Windows11 上线很久了,但是微软一直不给 Windows10 用,不过现在可以通过一些特殊方法安装。
winver
命令查看您当前的 Windows 版本.apt install git
cd /
git clone https://ghproxy.com/https://github.com/LSPosed/MagiskOnWSALocal.git
sudo bash /MagiskOnWSALocal/scripts/install_deps.sh
(过程中会提示输入密码)Win + R
,输入 cmd
回车ipconfig
,找到 以太网适配器 vEthernet (WSL):
后面的 IPv4 地址
\\wsl.localhost\Ubuntu\MagiskOnWSALocal\scripts\build.sh
aria2c
aria2c
后面添加 --all-proxy="<IPv4 地址>:<Windows 代理端口号>"
(注意和aria2c
之间有空格)sudo bash /MagiskOnWSALocal/scripts/run.sh
(过程中会提示输入密码)↑
↓
←
→
键更改选项,空格键选中,回车键确认Build arch
选择 x64
还是 arm64
需要根据设备来,你可以通过以下方式确定Win + R
,输入 cmd
回车echo %PROCESSOR_ARCHITECTURE%
x64
arm64
WSA release type
建议选择 insider fast
Magisk version
建议选择 stable
\\wsl.localhost\Ubuntu\MagiskOnWSALocal\output
,将文件夹中的压缩包解压到合适的路径(安装路径)<第 4 步解压的文件夹>\WsaClient
<第 4 步解压的文件夹>\AppxManifest.xml
在 AppxManifest.xml
找到 TargetDeviceFamily
节点
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.22000.120" MaxVersionTested="10.0.22000.120"/>
把 MinVersion 从 10.0.22000.120 改成 10.0.19045.2311
在 AppxManifest.xml
删除 customInstall
相关节点,一共有两个
<rescap:Capability Name="customInstallActions"/>
<desktop6:Extension Category="windows.customInstall">
<desktop6:CustomInstall Folder="CustomInstall" desktop8:RunAsUser="true">
<desktop6:RepairActions>
<desktop6:RepairAction File="WsaSetup.exe" Name="Repair" Arguments="repair"/>
</desktop6:RepairActions>
<desktop6:UninstallActions>
<desktop6:UninstallAction File="WsaSetup.exe" Name="Uninstall" Arguments="uninstall"/>
</desktop6:UninstallActions>
</desktop6:CustomInstall>
</desktop6:Extension>
<第 4 步解压的文件夹>\Run.bat
1
icoming 2023-02-01 22:57:08 +08:00
不懂,但是要支持下的
|
2
wdssmq 2023-02-04 10:49:03 +08:00
姑且脱水下命令行:
git clone https://ghproxy.com/https://github.com/LSPosed/MagiskOnWSALocal.git ~/tmp/wsa cd ~/tmp/wsa/scripts/ sudo ./install_deps.sh sudo ./run.sh 然后我这里打包时报错了 - - Traceback (most recent call last): File "generateWSALinks.py", line 28, in <module> from typing import OrderedDict ImportError: cannot import name 'OrderedDict' |
4
wdssmq 2023-02-06 16:51:36 +08:00
|
5
wdssmq 2023-02-06 17:14:00 +08:00
已经成功安装 哔哩哔哩漫画 并启动,不知道会有什么坑。。
|
6
nite OP |