这几天心血来潮去玩termux,结果发现termux-chroot命令无法使用,经过在茫茫网络中的搜索,终于在GitHub上找到了解决方案。

具体参考GitHub的解决方案https://github.com/termux/proot/issues/87,修改termux-chroot的脚本后可以完美运行

修改termux-chroot脚本

1
vi /data/data/com.termux/files/usr/bin/termux-chroot

插入红框里的这几行代码

1
2
3
4
5
# Android 10 needs /apex for /system/bin/linker:
# https://github.com/termux/proot/issues/95#issuecomment-584779998
if [ -d /apex ]; then
ARGS="$ARGS -b /apex:/apex"
fi

输入:wq 保存退出
接下来就可以完美的使用termux-chroot命令了。
效果展示