This is a collection of scripts that make it easy to setup and use Termux on Android for beginner programmers.
Important
- Install Termux (Linux Terminal emulator) from F-Droid (https://f-droid.org/packages/com.termux), you can also download the Termux APK (Version 0.118.0) directly from the F-Droid repo here: https://f-droid.org/repo/com.termux_118.apk
- We recommend at least a 2GB RAM Android phone.
Note
For iOS users, unfortunately, Termux does no work! More unfortunately, there are no comparative alternatives. However, you can try a-shell for local programming and xTerminal for remote SSH access - extra note: xTerminal is not free
The very first file to run after downloading
termux is termux_setup.
Here is the initialization syntax:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/termux_setup && chmod +x ./setup && ./setup && exit
This Script will do the following:
- Update Termux
- Install Openssh
- Install and Setup Openssl
- Install Unzip
- Install and Configure Git
- Install Gh (Github CLI)
- Install Zsh After this, exit (if the script doesn't do that automatically) and reopen Termux.
Additionally we have more scripts too for other functionalities:
- The Editor setup script: This installs Neovim, a fork of Vim and the defactor code editor on Linux terminal. To use this script in Termux, copy and paste the below snippet of code into your terminal:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/editor_setup && chmod +x ./setup && ./setup && exit
- The Apps setup script: This script installs programming languages like Python, NodeJS, and PHP. To use this script in Termux, copy and paste the below snippet of code into your terminal:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/apps_setup && chmod +x ./setup && ./setup && exit
- The GCP CLI setup script: This script installs Google cloud CLI for managing Google Cloud resources. To use this script in Termux, copy and paste the below snippet of code into your terminal:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/gcp_cli_setup && chmod +x ./setup && ./setup
- GCloud VM Setup: This scripts helps you provision a free VM or customize a more robust machine for your use. It works well on Termux or on the Google cloud shell, just copy and paste the code below into your terminal:
curl -Lo vm https://raw.githubusercontent.com/themobileprof/scripts/develop/gcloud_vm && chmod +x ./vm && ./vm
- The AWS CLI setup script: This script installs AWS CLI for managing Amazon Web Services. To use this script in Termux, copy and paste the below snippet of code into your terminal:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/aws_cli_setup && chmod +x ./setup && ./setup
- The Azure CLI setup script: This script installs Azure CLI for managing Microsoft Azure Cloud resources. To use this script in Termux, copy and paste the below snippet of code into your terminal:
curl -Lo setup https://raw.githubusercontent.com/themobileprof/scripts/develop/azure_cli_setup && chmod +x ./setup && ./setup
For any feedbacks or enqiries, please reach out here: themobileprof.com @ gmail.com