Skip to main content

Posts

Cloudflared in Termux: 10 Different Ways to Use

How to Use Cloudflared in Termux: 10 Practical Use Cases Cloudflared (Cloudflare Tunnel) is a lightweight CLI daemon that connects your local servers and localhost environments directly to the Cloudflare edge network—allowing you to expose local web apps, SSH servers, and webhooks to the internet without port forwarding or a public IP address. Installation in Termux To install Cloudflared on Termux, update your repositories and install the package: pkg update && pkg install cloudflared 10 Real-World Ways to Use Cloudflared in Termux Expose a Local Web Server (Quick Tunnel): Easily share a local server running on Termux (e.g., Python HTTP, Node.js, PHP) with a free temporary *.trycloudflare.com URL. Command: cloudflared tunnel --url http://localhost:8080 Run a Secure DNS-over-HTTPS (DoH) Proxy: Encrypt your DNS queries by routing standard DNS traffic through Cloudflare's 1.1.1.1 secure DoH service on port 53. ...

How to install Termux | Post by @rajbhx

How to Install Termux on Android What Is Termux? Termux is an Android terminal emulator and Linux environment app that works directly without root access or complex setup. A minimal Linux base system is installed automatically, and additional packages can be installed using the APT package manager. Installation Steps Download Termux Visit F-Droid and download the Termux app. Install it on your Android device. Update Termux Packages Open Termux and update the package repository by running: apt-get update && apt-get upgrade Press Y when prompted to confirm. If you encounter a libssl.so error, check this guide: libssl.so error fix Note: If you see apt-get: command not found , scroll to the end of the linked article for solutions. Allow Storage Access To give Termux access to your device storage, follow this guide: ...

Exploring the 2026 Future of Termux: What's Ahead?

The Future of Termux: Viability and Advancements ๐Ÿ“ฑ๐Ÿš€ Introduction Termux is a popular Android terminal emulator widely used by developers who want a Linux-like environment on their mobile devices. With access to essential tools such as coreutils , git , and zsh , Termux has become a powerful companion for development and experimentation. As an open-source project, its long-term future and compatibility with newer Android versions are frequent topics of discussion. This post explores the current state of Termux, its behavior on Android 11, distribution changes, and what lies ahead. Termux on Android 11 On Android 11, Termux continues to function reliably for most users. The majority of packages work as expected, enabling everyday development tasks. However, some limitations remain, including issues with certain shells like zsh and restricted access to /proc/net . Despite these constraints, Termux remains a practical and usable solution on Android 11 devices. Goog...

Cloudflared in Termux to Create tunnels, Port Forwding

Installing Cloudflared in Termux for Android (ngrok Alternative) – 2026 Updated Repository Link https://github.com/rajbhx/cloudflared-termux What Is Cloudflare? Cloudflare, Inc. is an American content delivery network (CDN) and DDoS protection company founded in 2010. It works as a reverse proxy between visitors and the hosting provider, improving security, performance, and reliability. Basic Usage Once installed, Cloudflared can expose a local service to the internet. cloudflared -url localhost:PORT Example: cloudflared -url localhost:8000 Alternative command: cloudflared tunnel localhost:PORT Installation Make sure your Termux app is fully updated before proceeding. Installation Commands Follow the steps below to install Cloudflared using the rajbhx/cloudflared-termux script. 1. Update Termux and install Git pkg update && pkg upgrade pkg install git 2. Clone the Cloudflared Termux repository git ...

Easy way to Install Ubuntu on Android | Termux

Easy Way to Install Ubuntu on Android Using Termux Introduction Ubuntu is a beginner-friendly Linux distribution that is easy to use and ideal for getting started. In this guide, you’ll learn how to install Ubuntu on Android using Termux without root access. A graphical desktop environment will also be installed to provide a full Ubuntu desktop experience. Prerequisites Termux: Installed on your Android device VNC Viewer: Any VNC Viewer app from the Google Play Store Installation of Ubuntu Step 1: Update Termux and Install proot-distro pkg update -y ; pkg install proot-distro Step 2: Install Ubuntu proot-distro install ubuntu Step 3: Login to Ubuntu and Update Repositories proot-distro login ubuntu apt update ; apt install sudo nano Step 4: Set Up a Local User adduser <username> echo "<username> ALL=(ALL:ALL) ALL" >> /etc/sudoers Create a password for the new user when prompted. Step 5: Switch to the New User ...

Installing TOOL-X: Empower Your Termux with Kali Linux Hacking Tools

๐Ÿ”ง How to Install TOOL-X (Kali Linux Hacking Tools Installer) on Termux Introduction TOOL-X is a Kali Linux hacking tools installer designed for Termux and other Linux-based systems. It allows you to install 370+ security and penetration-testing tools on Android (via Termux) as well as on distributions like Ubuntu and Debian. Supported Platforms Termux (Android) Ubuntu Debian Other Linux-based distributions Prerequisites Updated Termux or Linux system Internet connection Git installed Installation Steps Step 1: Update Package Lists apt update Step 2: Install Git apt install git -y Step 3: Clone the TOOL-X Repository git clone https://github.com/rajkumardusad/Tool-X.git Step 4: Navigate to the TOOL-X Directory cd Tool-X Step 5: Make the Installer Executable chmod +x install Step 6: Run the Installer ./install If the above command fails, try: sh install Post-Installation After installation, TOOL-X will launch autom...

Install Alpine Linux (lightweight) in Termux | rajbhx

How to Install Alpine Linux in Termux Alpine Linux is a lightweight Linux distribution built around musl libc and BusyBox . It is designed to be minimal, secure, and resource-efficient. A basic Alpine container can be under 8 MB, and a minimal installation typically requires around 130 MB of storage. Supported Architectures x86 x86_64 ARMhf AArch64 Package Manager Alpine Linux uses the apk package manager. Requirements Termux app installed Android device ~100 MB internet data At least 150 MB free storage Installation Steps Go to your home directory: cd $HOME Update Termux and install required tools: pkg update && pkg upgrade && pkg install curl Download the Alpine installation script: curl -LO https://raw.githubusercontent.com/Hax4us/TermuxAlpine/master/TermuxAlpine.sh Run the installer: bash TermuxAlpine.sh Start Alpine Linux: sta...

Popular posts from this blog