Skip to main content

How to install and configure termux on Android

Note: don’t install from the Google Play Store, it is a highly stripped-down version of the original

The options present in my own priority order

  1. Download from GitHub releases

  2. Download using Fdroid

download from GitHub releases

Just go to GitHub releases, download the APK, and install it. We will see configuration steps later !

The only downside is you need to redownload on each release

download using FDroid

You can use Fdroid as package manager instead of Google play store

Now download completed what’s next

  • setup the nearest mirrors using termux-change-repo

  • setup the storage using termux-setup-storage

  • Do update and upgrade

termux configure nearest mirrors

Run termux-change-repo

And it will scan all the nearest repos and configure the default one which is the nearest

setup storage using termux-setup-storage

It usually asks for some permissions and do some storage setup don’t remember what is actually do but used it to fix a problem some time ago

do some PKG update and upgrade

Run command 

pkg update && pkg upgrade 

This will update and upgrade your system

Any further upgrades will be added you can also suggest edits I know my English may be bad I will read this once in a while and update it

Comments

Popular posts from this blog

Introduction to Protocol Buffers (Protobuf): A Compact and Efficient Data Serialization Format πŸš€

In the world of software development, communication between systems, especially distributed systems, is crucial. Whether it's for sending data over a network, storing information, or inter-process communication, the format of data exchanged plays a significant role in the efficiency and ease of use. One such data serialization format that has gained widespread popularity is Protocol Buffers (Protobuf) . πŸ’Ύ What is Protocol Buffers? πŸ€” Protocol Buffers, commonly known as Protobuf , is a lightweight and language-neutral data serialization format developed by Google. It allows for the efficient and structured representation of data, making it an excellent choice for communication between services, storing data in files, or for persistent data formats. Protobuf works by defining data structures in a language-agnostic way, and then compiling these definitions into source code that can be used across various programming languages such as Java, C++, Python, and more. 🌐 Why Should Y...

πŸ›‘ Getting "No Space" Error After Using Docker for Some Time? Use These Commands to Clean Up πŸ›‘

Docker is a fantastic tool for containerizing applications, allowing developers to package their software along with dependencies into lightweight, portable containers. These containers can run consistently across different environments, making Docker ideal for development, testing, and deployment. However, over time, unused images, containers, volumes, and networks can pile up, consuming significant disk space. If you’re encountering a "no space left on device" error or simply want to free up space, Docker provides several prune commands to help with cleanup. Let’s dive into each of these commands and how to use them effectively. πŸŽ‰ 1. docker image prune πŸ–Ό️ This command removes dangling images. Dangling images are layers that are no longer tagged or associated with a container. Usage: docker image prune To remove unused images (not just dangling ones), use the -a flag: docker image prune -a Pro Tip: Combine the -a flag with filters for more control, like: dock...