Termux入门:换清华源并安装必要软件

前言

Termux是安卓平台最成熟的终端软件,拥有大量Linux应有的软件,如Nginx、MySQL、git等软件。但由于软件源位于国外,访问速度缓慢,故更换清华源以加速软件下载速度。

操作

一键更换

sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux stable main@' $PREFIX/etc/apt/sources.list
pkg up

手动操作
编辑 $PREFIX/etc/apt/sources.list 修改为如下内容

# The termux repository mirror from TUNA:
deb https://mirrors.tuna.tsinghua.edu.cn/termux stable main

然后

pkg up

安装必要软件

pkg install openssl wget htop tsu proot git nano neofetch python curl

openssl:https必要部件

wget:拉文件

curl:同上

htop:一款比较好看的任务管理器

tsu:下一章提到了,切换账户(root)

proot:无root权限执行需要root的命令

git:不用说,懂的人自然懂

nano:一款比vi简易一万倍的编辑器

neofetch:查看系统信息

python:获取一条蟒蛇(安装python3,现在是3.7.3)

然后你可以执行neofetch,你应该获得以下回显

没有任何作用,只是看看安卓机器人

2 条评论

发表回复

*