Termux 安装与基础使用
552人浏览 / 0人评论
参考
https://zhuanlan.zhihu.com/p/360842276
https://www.cnblogs.com/jiftle/p/16437668.html
https://www.bilibili.com/read/cv17211082
安装
官网:https://termux.dev/cn/index.html
本地:http://pan.jbritian.com/share/48081775401b47eeb5b88802994d97ee
使用
初始化
# 更换镜像,选择 Mirrors by BFSU
termux-change-repo
# 更新 pkg
pkg upgrade # 选择 y
# 安装常用工具
pkg install git curl wget vim -y
安装 ssh
# 安装(手机上 termux 开启的 sshd 服务用的是 8022 端口)
pkg install openssl
pkg install openssh
# 开启服务
sshd
# 查看ip
ifconfig
# 查看用户名
whoami
# 设置密码
passwd
# 设置自动启动
echo "sshd" >> ~/.bashrc
# 申请存储卡访问权限
termux-setup-storage
安装 nginx
# 安装
pkg install nginx
# 启动
nginx
# 查看nginx路径
pkg files nginx
# cd 到html文件夹,放入自己的文件,通过浏览器访问即可
cd /data/data/com.termux/files/usr/share/nginx/html
全部评论