Here is My Termux Terminal Emulator Setup & Packages 🔖

Linux on Android 💯

Download Termux

Termux Terminal Emulator for Android

Get it from Google Play store 💯

My Setup & Packages

  • Update Termux Packages
pkg up
  • Install cURL
pkg install curl
  • Install git
pkg install git
  • Install wget
pkg install wget

Python2

pkg Install python2

Python3

pkg install python
  • Install Nodejs
pkg install nodejs
  • Install jq (pre Format JSON result)
pkg install jq
  • Install libxml2-utils
pkg install libxml2-utils
pkg install grep
  • Install bc (Arbitrary Precision Calculator language)
pkg install bc
  • Install htop (Task manager & system Monitor)
pkg install htop
  • Install figlet
pkg install figlet
  • Install httping (pinging tool for HTTP requests)
pkg install httping
  • install dnsutils (Mostly i use this tool for find the website/blog IP address)
pkg install dnsutils
  • Install openssh (For Managing My Servers SSH & SFTP)
pkg install openssh
  • Install FFmpeg (Handling video, audio, and other multimedia files and streams)
pkg install ffmpeg
  • Install youtube-dl
curl -sL https://gist.githubusercontent.com/mskian/6ea9c2b32d5f41867e7cafc88d1b26d5/raw/youtube-dl.sh | bash
  • Install PHP
pkg install php
  • Install PHP Composer on Termux
curl -sS https://getcomposer.org/installer | php -- --install-dir=/data/data/com.termux/files/usr/bin --filename=composer
  • Install nano Editor
pkg install nano
  • Install ZSH (For Run ohmyzsh)
pkg install zsh
  • Install HTTPie on Termux (cURL Alternative) and Install Socks for Proxy Connection [Python3 Modules]
pip install --upgrade pip setuptools
pip install --upgrade httpie
pip install -U requests[socks]
pip install requests
  • Required packages for Python development
pkg install clang python-dev
pkg install libffi-dev
pkg install openssl-dev
  • DuckDuckGo for Termux
pip install ddgr
  • Install screenfetch (System Information Generator)
pkg install screenfetch
  • Install w3m - Text based Web browser
pkg install w3m
pkg install termux-exec
pkg install termux-api
pkg up
termux-setup-storage
  • Termux Enable Extra Key Rows
cd .termux
nano termux.properties

Copy and Paste the Below Key Configuration in the Termux Properties File - CTRL + X to save & Exit

extra-keys = [ \
 ['ESC','|','/','HOME','UP','END','PGUP','DEL'], \
 ['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN','BKSP'] \
]
termux-upgrade-repo

Termux Storage permission did not create symlink for all folders - ( https://github.com/termux/termux-app/issues/591 )

cd $HOME
ls
  • Termux - Check if a program/Package is exists or Not (Verify your Package Installation)
curl -sL https://gist.githubusercontent.com/mskian/4278fed4a206f4ec440f0dd512d4540b/raw/package.sh | bash
  • List the Installed Packages
pkg list-installed
  • Uninstall/Remove Packages
pkg uninstall <package-name>
  • Clear bash Path cache
hash -r
  • Termux Help
pkg help

Learn More about Termux Visit - https://termux.com/

Bookmark this Page More Updates on the way 😊