Termux commands list Basic and Useful TERMUX Basiccommands
This article is just for Instructive Purposes.
https://jarvisstaraq.blogspot.com/2021/12/termux-commands-list-basic-and-usefull.html
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-instagram-reporting-2.html
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-java-9-in-termux-by.html
TERMUX Basic
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-java-8-in-termux-by.html
Hi Geeks,
I chose to post with regards to Termux in light of the fact that its an extremely fascinating apparatus that empowers you to remove the most from your Android Cell phones.
You don't should be a Specialized nerd as its extremely easy to utilize in the event that you have some fundamental information on Instructive Innovation and a portion of its ideas.
So lets start
Peruse THE FULL ARTICLE !!
You might deal with an issue while doing the Set-Up ! Peruse every single step completely any other way you will not have the option to comprehend.
https://jarvisstaraq.blogspot.com/2021/12/termux-commands-list-basic-and-usefull.html
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-instagram-reporting-2.html
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-java-9-in-termux-by.html
TERMUX Basic
https://jarvisstaraq.blogspot.com/2021/12/how-to-install-java-8-in-termux-by.html
Hi Geeks,
I chose to post with regards to Termux in light of the fact that its an extremely fascinating apparatus that empowers you to remove the most from your Android Cell phones.
You don't should be a Specialized nerd as its extremely easy to utilize in the event that you have some fundamental information on Instructive Innovation and a portion of its ideas.
So lets start
Peruse THE FULL ARTICLE !!
You might deal with an issue while doing the Set-Up ! Peruse every single step completely any other way you will not have the option to comprehend.
WHAT IS TERMUX ?
Termux is a Powerful Android application which is Designed to Install Linux bundles on your Android MobileWith this Termux App You Can Install shell, python, c, c++, perl, ruby, java and a lot more valuable bundles and with the assistance of Termux we can utilize a few Hacking Tools/scripts in our portable including Nmap, Hydra, Sqlmap and so forth
=>>> TERMUX is just accessible for Android. Assuming you wish to involve that for PC, then, at that point, you can introduce an Android Emulator on your PC. Right now, IOS doesn't uphold Termux. Be that as it may, you might utilize other applications.
=>>> Some Popular Android Emulators <<<=
Blue Stacks
NoxPlayer
MEmu
LDPlayer
Blue Stacks
NoxPlayer
MEmu
LDPlayer
Getting Started with Termux-:
Go to Google and search for the app named TERMUX.Download the App and wait for the installation to complete.
Once, you are done with this, open TERMUX.
Download Links-:
F-DROID :=> Click here
BASIC COMMAMDS IN TERMUX -:
--- cd commands---
What is cd ?
cd means change the directory and cd used for change the directory of terminal.There are six Commands of cd
1. cd (change directory)
2. cd - (Move one directory back from where you are now)
3. cd ~ (Move to users have directory from anywhere)
4. cd .. (Change current directory to parent directory)
5. cd -- (Show last working directory from where we moved)
6. cd / (Change to root directory)
2. cd - (Move one directory back from where you are now)
3. cd ~ (Move to users have directory from anywhere)
4. cd .. (Change current directory to parent directory)
5. cd -- (Show last working directory from where we moved)
6. cd / (Change to root directory)
---ls Commands---
What is ls ?
ls list all current folders and directoriesThere are 12 commands of ls see what they are-:
ls (list current directory /list folder contents)
ls -l (To show file or directory, size, modified date and time, owner of file, permission)
ls -a (List all files including hidden files )ls -lh (It show size in human readable format)
ls -F (Used to add the '/' character at the each directory)
ls -r (Used to display files , directories in reverse order)
ls -ltr (Used to show latest modified directory or file date)
ls -n (to display UID and GID directories)
ls -i (Display number of file or directory)
ls -R (Show recursively list of sub directories)
11. ls -al (Formatted listing with hidden files)
11. ls -al (Formatted listing with hidden files)
ls --version (To check the version of ls command)
***** cp commands ****
The following commands shows different types of cp commands. There are 6 commands of copy
What is cp ?
cp means copy, cp used for copy any type of files folders.The following commands shows different types of cp commands. There are 6 commands of copy
1. cp (used to copy any files, folders)
2. cp -f (Force copy by removing the destination files)
3.cp -v (Used to print informative message)
4. cp -u (Used to copy when source is newer than dest)
5. cp -R (Used to copy any directory "including hidden files")
6. cp -n (No file overwrite)
There are six commands of mv
2. cp -f (Force copy by removing the destination files)
3.cp -v (Used to print informative message)
4. cp -u (Used to copy when source is newer than dest)
5. cp -R (Used to copy any directory "including hidden files")
6. cp -n (No file overwrite)
---mv command---
What is mv ? mv means move and it’s used for move files and foldersThere are six commands of mv
1. mv[Filename] (Used to move any files, folders)
2. mv -f (Force move by overwriting destination files without promote)
3. mv -v (To move any directory, folders)
4. mv -u (Update -move when source is newer than destination)
5. mv -i (Interactive prompt before overwrite)
6. mv [File1][New File2] (Used to move or rename file one to file 2)
**** unistall commands ****
2. mv -f (Force move by overwriting destination files without promote)
3. mv -v (To move any directory, folders)
4. mv -u (Update -move when source is newer than destination)
5. mv -i (Interactive prompt before overwrite)
6. mv [File1][New File2] (Used to move or rename file one to file 2)
**** unistall commands ****
What is rm ?
rm means remove and it’s used for remove or delete files.There are 5 commands of rm
1. rm (To remove or delete files)
2. rmdir [Dir name] (To remove any directory)
3. rm -rf (used to force remove a directory)
4. rm -r[Name] (Delete a directory called name)
5. apt remove [Package name] (Used to remove package)
**** package installation ****
What is apt ?
apt is a commandline package manager and provides commands for searching and managing as well as querying information about packages. It provides the same functionality as the specialized APT tools.1. apt update (Used to update list of packages)
2. apt upgrade (To upgrade list of packages)
3. apt install <package> or pkg install <package> (to install packages)
---file permission commands---
What is chmod ? chmod is used to change file permission to make file in executable mode)There are 5 commands of chmod
1. chmod +x [File name] (Used to give permission{Make executable} to a file or script like .py .sh .rb )
2. chmod +x * (Set file permission to all files)
3.chmod 771 [File name] (Set file permission)
4. chmod 777 [File name] (Give executable permission to a file)
5. chmod 777* (Give executable permission to all files)
---Installation of Tools---
git clone [url] (To install tools or script for github)wget [url] (To install tools or script from any other website)
curl [url] (To install tool or script for termux)
**** Basic Network Commands****
ifconfig (Shows configuration a network interface for check your local IP, mac address or display the current network interface information)
SETTING-UP OF TERMUX FOR USE -:
Caution: Do not use || while writing commands as we have used this for your better understanding only.
=>>> Type ls not 1s.
=>>> Copy the Commands thoroughly. If you commit an error, then you will not be able to complete your basic set-up Installation.
UPDATING -:
pkg update && pkg upgrade
apt update && apt upgarde
INSTALLING GIT PACKAGES-:
apt install git
INSTALLING PYTHON PACKAGES-:
apt update && apt upgarde
INSTALLING GIT PACKAGES-:
apt install git
INSTALLING PYTHON PACKAGES-:
apt install python
apt install python2
apt install python3
• GIVING TERMUX ACCESS TO STORAGE-:
Follow the given Steps-:
Type,
• GIVING TERMUX ACCESS TO STORAGE-:
Follow the given Steps-:
Type,
termux-setup-storage
A Dialog box appears. Click on ALLOW to complete the process.
Now type,
cd storage
Then type,
Then type,
ls
Now you can see your storage folders.
Congrats !! You have successfully completed the setting up of your Termux.
Now you can see your storage folders.
Congrats !! You have successfully completed the setting up of your Termux.