FREE TUTORIAL - Cara Menggunakan Aplikasi Termux Untuk Pemula Di Android | Tutorial Lengkap 2025 !!
Table of Contents
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
-
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.
-
Download Termux:
- Click on the download link: Termux APK from F-Droid.
- If you prefer a specific version, you can use this link: Termux APK v118.
-
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
-
Launch the Application:
- Find the Termux icon on your home screen or app drawer and tap to open it.
-
Update Packages:
- Immediately update the package lists to ensure you have the latest versions. Enter the following command:
pkg update && pkg upgrade
- Immediately update the package lists to ensure you have the latest versions. Enter the following command:
-
Install Basic Packages:
- Install essential packages for better functionality. Use the command:
pkg install git wget curl
- Install essential packages for better functionality. Use the command:
Step 3: Install Additional Packages and Modules
-
Search for Packages:
- To find specific packages, you can use the command:
pkg search <package-name>
- Replace
<package-name>
with the desired software.
- To find specific packages, you can use the command:
-
Install a Package:
- To install a package, type:
pkg install <package-name>
- For example, to install Python, use:
pkg install python
- To install a package, type:
Step 4: View Installed Packages
-
List All Installed Packages:
- To see a list of all packages currently installed in Termux, use:
dpkg --get-selections
- To see a list of all packages currently installed in Termux, use:
-
Check Specific Package Information:
- For details about a particular package, you can check with:
pkg show <package-name>
- For details about a particular package, you can check with:
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.