Fedora Linux Distro in Termux – Installation, Usage & Basic Commands

Fedora Linux is a modern and powerful Linux distribution that focuses on stability, performance, and updated software packages. You can run Fedora inside Termux using proot-distro without root access. It is a great choice for users who want a clean Linux environment with newer tools and better package management. Fedora Linux distro in Termux can be used to:

  • Run a modern Linux environment on Android.
  • Install latest development tools.
  • Practice Linux commands safely.
  • Use it for learning server-side Linux basics.
  • Test packages with DNF package manager.

Requirements

Before installing Fedora Linux in Termux, make sure your device is ready.

  • Termux installed (latest version).
  • Internet data required: 200MB – 300MB.
  • Free storage: Minimum 2GB.
  • RAM required: Minimum 2GB recommended.
  • Installation time: Approx 10–25 minutes.

Installation Commands

Update Termux and install proot-distro:

pkg update && pkg upgrade && pkg install proot-distro -y

List available distros:

proot-distro list

Install Fedora Linux Distro:

proot-distro install fedora

Login to Fedora:

proot-distro login fedora

Usage Commands

Start Fedora Linux anytime:

proot-distro login fedora

Exit Fedora session:

exit

Remove Fedora Linux distribution and its data:

proot-distro remove fedora

Basic Fedora Linux Commands

These commands help you manage Fedora Linux easily inside Termux.

Update system packages:

dnf update -y

Upgrade system:

dnf upgrade -y

Install a package:

dnf install git -y

Remove a package:

dnf remove git -y

Check system info:

cat /etc/os-release

List files and folders:

ls

Create a folder:

mkdir foldername

Change directory:

cd foldername

Remove file:

rm filename

Remove folder:

rm -rf foldername

Clear terminal screen:

clear

Check disk usage:

df -h
SHARE THIS POST: