FREE TUTORIAL - Cara Menggunakan Aplikasi Termux Untuk Pemula Di Android | Tutorial Lengkap 2025 !!

3 min read 1 month ago
Published on May 19, 2025 This response is partially generated with the help of AI. It may contain inaccuracies.

Introduction

This tutorial provides a step-by-step guide for beginners on how to use the Termux application on Android. Termux is a terminal emulator and Linux environment app that operates without rooting your device. This guide will cover how to download, install, and utilize Termux effectively, ensuring you can navigate its features with ease.

Step 1: Download and Install Termux

  1. Visit the F-Droid Website:

    • Open your web browser and go to the F-Droid website.
    • Alternatively, you can download the Termux APK directly using the provided link.
  2. Download Termux:

  3. Install the APK:

    • Once downloaded, locate the APK file in your device's downloads folder.
    • Tap on the APK file to begin the installation.
    • Allow the installation from unknown sources if prompted.

Step 2: Open and Configure Termux

  1. Launch the Application:

    • Find the Termux icon on your home screen or app drawer and tap to open it.
  2. Update Packages:

    • Immediately update the package lists to ensure you have the latest versions. Enter the following command:
      pkg update && pkg upgrade
      
  3. Install Basic Packages:

    • Install essential packages for better functionality. Use the command:
      pkg install git wget curl
      

Step 3: Install Additional Packages and Modules

  1. Search for Packages:

    • To find specific packages, you can use the command:
      pkg search <package-name>
      
    • Replace <package-name> with the desired software.
  2. Install a Package:

    • To install a package, type:
      pkg install <package-name>
      
    • For example, to install Python, use:
      pkg install python
      

Step 4: View Installed Packages

  1. List All Installed Packages:

    • To see a list of all packages currently installed in Termux, use:
      dpkg --get-selections
      
  2. Check Specific Package Information:

    • For details about a particular package, you can check with:
      pkg show <package-name>
      

Conclusion

In this tutorial, we've covered the essential steps to download, install, and navigate Termux on your Android device. You learned how to update the app, install basic and additional packages, and view installed packages. With this knowledge, you are now equipped to explore the powerful features of Termux. For further learning, consider experimenting with different packages and scripts, or explore community resources for advanced functionalities.