Termux is a powerful terminal emulator and Linux environment for Android. Here are some of its frequently used commands:
apt update: Refresh the package index list.
apt upgrade: Upgrade all the installed packages to their latest versions.
apt install [package name]: Install a package.
apt remove [package name]: Remove a package.
apt search [search keyword]: Search for a package.
ls: List the contents of the current directory.
cd [directory name]: Change the current directory to the specified directory.
mkdir [directory name]: Create a new directory with the specified name.
touch [file name]: Create a new file with the specified name.
rm [file/folder name]: Remove the specified file or folder.
mv [source] [destination]: Move or rename a file or folder.
cp [source] [destination]: Copy a file or folder.
wget [URL]: Download a file from the specified URL.
curl [URL]: Transfer data from or to a server, download files, among other things.
top: Display the processes currently running in the system.
su: Switch to the root user account.
passwd: Change the password of the current user or root user.
exit: Close the Terminal session
0 Comments