简介
Termux 可以在安卓上运行 Linux 终端。
GitHub 上 termux/termux-app 已经不发新版了,但是我看代码还在更新,于是我就 Fork 了一下,加了个 .github/workflows/android.xml,通过 GitHub Action 打包下载后一键签名就可以安装了。
初始化
# 请求文件权限
termux-setup-storage
# 更新
apt update && apt upgrade
权限
在 GitHub 上找了一个较新启用 root 的仓库:hctilg/root-termux: install root(sudo) in the termux
# 安装 git
pkg install git -y
# 克隆项目
git clone https://github.com/hctilg/root-termux.git && cd root-termux && chmod +x *
# 安装
pkg install wget proot -y
yes | bash install.sh
# 启用 root 环境
bash start.sh # or `./start.sh`
# 更新
apt update && apt upgrade
# 安装 sudo
apt install sudo
其他待测试:
- rompelhd/TermuxRootMods: TermuxRootMods is a Magisk module that enhances the Termux experience for rooted devices.
- nohajc/termux-adb: Run adb in Termux without root permissions!
评论区