Termux 是安卓平台开源终端模拟器,支持apt包管理、SSH连接、Python/Node.js/C++ 开发环境搭建,被开发者誉为"手机上的Linux系统"。其核心优势包括:
项目 | 最低配置 | 推荐配置 |
---|---|---|
系统 | Android 7.0+ | Android 12+ |
存储 | 500MB | 2GB+ |
内存 | 1GB | 4GB+ |
输入以下命令升级系统:
pkg update && pkg upgrade
推荐安装的核心工具包:
pkg install python nodejs clang git vim openssh
生成密钥并启动服务:
ssh-keygen -t rsa sshd
查看本机IP:ifconfig
,通过PC端PuTTY连接(端口8022)
安装Jupyter Notebook:
pip install jupyterlab jupyter notebook --ip=0.0.0.0 --port=8888
浏览器访问 手机IP:8888
进入交互式编程界面
使用Clang编译器示例:
// test.c #include <stdio.h> int main() { printf("Hello Termux!\n"); return 0; }
编译运行:
clang test.c -o test && ./test
快速启动Node.js 服务:
// server.js const http = require('http'); http.createServer((req, res) => { res.end('Termux Server Running'); }).listen(3000);
运行:node server.js
插件名称 | 安装命令 | 功能说明 |
---|---|---|
Termux:API | pkg install termux-api | 调用手机传感器/摄像头 |
Termux:Widget | pkg install termux-widget | 桌面快捷指令 |
CodeServer | `curl -fsSL https://code-server.dev/install.sh | sh` |
Tasker | 需单独安装 | 自动化任务联动 |
pkg install proot wget wget https://raw.githubusercontent.com/NoviceLive/mintty/master/install.sh bash install.sh
挂载外部存储:
termux-setup-storage ln -s /storage/emulated/0/Download ~/download
安装Oh My Zsh主题:
pkg install zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
声明:本教程基于Termux编写,适用于Android 7+设备。原创内容转载请注明来源 。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。