Termux Cheat Sheet: PKG Up or Apt Update && Apt Upgrade
Termux Cheat Sheet: PKG Up or Apt Update && Apt Upgrade
If you’re new at Termux, to get familiar with Termux, read our TERMUX GUIDE
here.
Install Aria
aria2 is a command based download manager, it is faster than curl, wget. It has
resume support, it can download torrent files and etc.
Installation: pkg i aria2
Downloading: aria2 <url>
Install Megatools
megatools allows us to download files form mega.nz, I like command version
because it fast and very small in size but it doesn’t have resume support.
Installation: pkg i megatools
Download: megadl <url>
Install Oh My ZSH
Install curl, zsh and git: pkg i curl git zsh
Now Follow official guide NOTE: We can’t set zsh as default, you can add a
line in .bashrc to automatically start zsh but it is not a good idea for small
devices
Install WFuzz
Install dependencies: pkg i python python-dev openssl openssl-
dev curl clang libcrypt libcrypt-dev libcurl libcurl-dev
Select SSL Library: export PYCURL_SSL_LIBRARY=openssl
Installation: pip install wfuzz
SSH
Installation: pkg i openssh
SSH client is ready, you can keep keys in $HOME/.ssh
Server only supports SSH Key so go to $HOME/.ssh
Generate a new SSH Key pair: ssh-keygen
Add content of public key to ~/.ssh/authorized_keys
Type sshd to start SSH server on port 8022
Connect from another system.
PHP
PHP has MySQL support by default and postgres support can be added using
packages, postgres and mysql database are available.
Installation: pkg i php
Best regards,
Anuj Mishra