如何在手机上玩转Linux、Python
作者:FancyPig | 发布时间: | 更新时间:
相关阅读
data-postsbox="{"id":21974,"title":"如何给Andriod手机安装Kali linux 无需ROOT","author":"FancyPig","author_id":1,"cover_image":"https://static.pigsec.cn/wp-content/uploads/2022/08/20220817074415614.png","cover_video":"","views":6621,"comment_count":18,"category":"knowledge","is_forum_post":false}">{"id":21974,"title":"如何给Andriod手机安装Kali linux 无需ROOT","author":"FancyPig","author_id":1,"cover_image":"https://static.pigsec.cn/wp-content/uploads/2022/08/20220817074415614.png","cover_video":"","views":6621,"comment_count":18,"category":"knowledge","is_forum_post":false}
data-postsbox="{"id":6220,"title":"IOS手机如何使用终端下载任意网站的视频?玩转ISH SHELL","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":2745,"comment_count":5,"category":"knowledge","is_forum_post":false}">{"id":6220,"title":"IOS手机如何使用终端下载任意网站的视频?玩转ISH SHELL","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":2745,"comment_count":5,"category":"knowledge","is_forum_post":false}
data-postsbox="{"id":6225,"title":"Andriod手机如何使用终端下载任意网站的视频?玩转Termux","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":3271,"comment_count":3,"category":"knowledge","is_forum_post":false}">{"id":6225,"title":"Andriod手机如何使用终端下载任意网站的视频?玩转Termux","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":3271,"comment_count":3,"category":"knowledge","is_forum_post":false}
视频讲解
本期视频我们将大家实操下载ish shell、termux
- 前者针对ios系统
- 后者针对Andriod系统
让大家随时随地可以使用手机练习Linux命令、Python编程!
软件下载地址
ish下载地址
Termux下载地址

相关命令
Termux更新apt源
针对国内用户,我们需要使用下面的命令更换镜像源
sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list
sed -i 's@^\(deb.*games stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable@' $PREFIX/etc/apt/sources.list.d/game.list
sed -i 's@^\(deb.*science stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable@' $PREFIX/etc/apt/sources.list.d/science.list
apt update && apt upgrade