[PDF] 2023 Updated Basic Termux commands | Termux Command list download PDF

Simple steps on How to hack phone camera  Basic termux commands Termux command list Basic commands of termux basic command pdf termux full command list pdf termux command list termux commands for android termux hacking commands termux commands pdf termux tricks Basic commands using termux pdf of basic ommands termux command list with pdf download basic termux commands how to use termux command list of termux command termux most used hacking command with android termux full command list pdf termux commands hacking list termux command list  termux commands hacking list termux command list 2021 pdf download termux basic command list pdf termux basic packages termux basic tools termux command list pdf download how to run command in termux how to command in termux getting starting in hacking using termux

Hi  guys today we are going to learn most important and basic commands in termux. It is very useful for beginner as well as for experts level hacker. Sometime we missed or forget some basic commands. At that time this post where I am going to tell you basic commands of termux, that every termux user needs, plays very important role. 

Many people don't know how to run command in termux so, don't be one of them.

What is Termux ?

Termux is a great tool for beginner as well as also for advance level hacker to do practice hacking using your smartphone. It give you access to use advance linux OS tools in termux without rooting. 

How to Install Termux on Android ?

You can easily able to download Termux from Play store as well as from it's Offical Site. After Downloading it, open termux application on your phone. and start Entering below basic commands of termux.  

Basic Commands of termux app for beginners ?

After installation of Termux app in your smartphone try below commands in a sequence. Practice helps you, many below commands are very interesting as well as some are very important. Let's try all one by one

How to Update all packages in termux :

$ apt update && apt upgrade

Press 'Y' if wherever it asked for enter, it is to proceed update process.

How to Clear Screen :

$ clear

This command is used to clear screen of your termux terminal of that session.

How to find Current Working Directory in Termux :

$ pwd

This command is used to find current working directory.
 

Changing Directory :

$ cd

This command is used to change current working directory to another directory. Just type cd and your directory name.

Move Back Directory :

$ cd ..

If you want to move in previous directory use above command, it is very useful command. 

However you want to move back 2 steps ( 2 directory ) 

$ cd ../../

Create New File :

$ touch (filename)

eg :- touch Devil.txt

This command is used to make a file. Many people face problem when they try Bruteforce on their victim social accounts (facebook, Instagram etc) with their custom passwords list. So, remember this command it helps you alot.

How to Delete any files in Termux :

$ rm (filename)

eg:- rm Devil.txt

This command is used to delete any file in termux application.

How to Create New Directory or Folder in Termux :

$ mkdir (directoryname)

eg:- mkdir Devil

This command is used to to make your own directory. Type mkdir and give space then directory name and press enter. To check your directory is made or not type below command.

$ ls 

How to Delete Directory in Termux :

$ rmdir (directoryname)

This command is used to delete any directory. Just type rmdir (directoryname) and press enter and it will be deleted. 

How to delete non-empty directory or folder from termux :

$ rm -rf (foldername)  

This command is used to remove a folder including it's all files, folders in it.

How to move files in Termux :

$ mv filename path

eg:- mv Devil.txt Devil    ( devil.txt is filename , Devil is directory. already tell you above )

This command is used to move files from one place to another place. As above command move Devil.txt file to Devil directory. 

How to copy files from one directory to another directory :

$ cp filename filepath

This command is used to copy one file to another place. So, basically there is 2 file now in new destination and in previous one. while in mv command it not present in previous one.


How to see the details of a package in Termux :

$ apt show nano

This command is used to see details of a package.

How to read file content or what is inside a text file in Termux :

$ cat filename

eg:- cat Devil.txt

This command is used to see what is inside a text file all get printed on the termux terminal.

How to find/check all running background process :

$ top Devil.txt

This command is used to see all the task running on your termux application. To stop it press CTRL+C on your smartphone keyboard.

Change permission and group / Make any bash file executable :

$ chmod +x filename ( make particular file executable)

$ chmod +x * ( make all files in directoray exxecutable)

This command is used to change file permission. Sometime you see when you try to run any bash file and you get error which say permission denied at that time you can use this command.

How to Install Git in termux :

$ pkg install git 

This command is used to download any project from github so we can use it on termux. It is important command that we need once after installation of termux application.

How to clone source code from Github :

$ git clone url

This command is used to download new project and cloning project from github. It is most Imprtant every tool need this command.

How to download in termux :

$ wget url

$ curl url

This command is used to download any file in your termux from internet.

How to see history in Termux :

$ history

This command give you a list of all the previous command or recent command you used in your termux terminal.

How to see all available package in termux :

$ pkg list-all

This command is used to see all the package available in termux.

How to see all installed packages in termux :

$ dpkg --list

This command is used to see all installed package in your termux app.

How to Install new package in termux :

$ pkg install (newpackage)

eg :- pkg install python3 

This command is used to install any package from the list. If it asked for any permission type 'y' and press enter.

How to remove pre Installed package / uninstall a package in Termux :

$ pkg remove (package-name)

$ pkg uninstall (package-name)

This command is used to remove/uninstall any installed package from termux. Now, termux want your process to proceed it, to delete the package just press 'y' and press Enter. 

How to search package with package name in termux :

$ pkg install (packagename)

This command is used to see all package that are related to that package name.

How to find package details in termux

$ apt show (packagename)

This command is used to find out all information that belongs to that particular package.


How to find your userid/ username in your termux :

$ whoami

This command is used to see your own user-name on  Termux. This one is cool and intersting command.

How can we find termux usuage time  :

$ uptime

This command is used to check how much we have spent our time. Well now we are learning termux at this moment, so it is not a wastage of our precious time. We are investing our time right now.


Note :- I want some seconds of your precious time, Share This Blog Link to your friends, in Whatsapp , Telegram, Facebook and many more groups. Our blog link :- Click Here 


How to check termux Kernel info :

$ uname -a
We use this command to see all info of your system.

How to check memory usuage in termux :

$ free -h -t

This command is used to get info about the amount of memory is free or used of your termux.

How to use ping command in termux : 

$ ping url

This command is used to verify IP-level connectivity. ping command is used to verify a TCP/IP network and network resources. use 'ctrl+c' in your keyboard to stop it.

> If you are in Beginner level in termux then bookmark this page in your browser, it helps you in your hacking journey.

How to find termux IP and MAC adderess :

$ ifconfig

This command is used to find IP and MAC address of your termux terminal. You need this command in many different termux tools where you have to enter your device IP.


How to find UID ang GID :

$ ls -n

This command is used to display directory UID and GID. After you enter above command, in your termux terminal you see left side of your terminal. rwx - means read , write and modified permission.

How to check ls command version :

$ ls --version

This command is used to find which version of ls you use in termux.

How to see hidden files in termux :

$ ls -a

This command is used to see all files which one are hidden also.

How to move files from internal storage of your smartphone to your termux app command :

First, enter below command, what it do ? it change your termux directory to internal storage of your smartphone directory.

$ cd /sdcard 

Now, enter below given command to move your file to termux from internal storage.

$ mv filename $Home

Using above command you can able to move any file from your smartphone to your Internal storage. make sure $ termux-setup-storage is already enabled.


If you want to see date, calendar, time , train , fire in your termux terminal then check out this post also, believe me it is interesting one for you :- Termux Cool command 


How to create a text file in termux :

  • First, you have to download touch in your termux, for installing just enter below command 

        $ pkg install touch
  • Now, type touch and filename you want to make file name.

                  eg :- touch Devil.txt ( Devil is file name )

  • Now, your files open type anything eg- your name , my name Devil 😁.
  • Now, press 'CTRL+X' and press 'Y' to save your file
  • Now, it asked you for name of your file, choose previous one line Devil or set new and press Enter in your keyboard.
  • Now, it's time to see your saved file just type below command

         $ ls

Best Way to learn Basic commands :

One of the best way to learn these command and it is easy way also is by using tools in termux. Below are some tools which one you find interesting install it now on your termux terminal, that how real genuine hacker's learn by installing different tools.

Play music in your termux it is cool one :- Click Here
Lock your termux screen put password :- Click Here
TBomb - send unlimited sms/call on any number annoymously :- Click Here
Make termux terminal like hacker :- Click Here
Send Free sms to anyone anonymously :- Click Here
And many more interseting tools. 

Conclusion :

All above commands are very useful commands from beginners to advance level users, these above all commands are very useful for termux user to linux user. When you upgrading yourself from termux to other linux OS you found many similar commands in other OS also, these above Basic Command help you in future also. However you find I missed some commands then comment below.

Download PDF of Termux Basics Command 2023

Termux command list 2023 pdf download. It include all basics commands list in this pdf. You easily able to download this pdf  just be clicking below Download button. 

Try termux basic tools as much as possible. to practice basic commands that are in pdf run those command on your termux terminal.]

Simple steps on How to hack phone camera  Basic termux commands Termux command list Basic commands of termux basic command pdf termux full command list pdf termux command list termux commands for android termux hacking commands termux commands pdf termux tricks Basic commands using termux pdf of basic ommands termux command list with pdf download basic termux commands how to use termux command list of termux command termux most used hacking command with android termux full command list pdf termux commands hacking list termux command list  termux commands hacking list termux command list 2021 pdf download termux basic command list pdf termux basic packages termux basic tools termux command list pdf download how to run command in termux how to command in termux getting starting in hacking using termux

If you like this post, buy me a coffee :- 

Your Small Contribution, motivate me alot ]


Join our Telegram channel :- Telegram


Note:- Use this tool for educational purpose only. we are not responsible, If anyone use this to harm             anyone!!

Errors or issue reasons

  • Data connection problem 
  • Spellings mistake
  • Big letters using in commands 
  • Giving more space b/w words 

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Simple steps on How to hack phone camera 
Basic termux commands Termux command list Basic commands of termux basic command pdf termux full command list pdf termux command list termux commands for android termux hacking commands termux commands pdf termux tricks Basic commands using termux pdf of basic ommands termux command list with pdf download basic termux commands how to use termux command list of termux command termux most used hacking command with android termux full command list pdf termux commands hacking list termux command list  termux commands hacking list termux command list 2023 pdf download termux basic command list pdf termux basic packages termux basic tools termux command list pdf download how to run command in termux how to command in termux getting starting in hacking using termux
Termux updated || Termux Commands || Termux Scripts || Termux tools || Termux Tools install || Termux commands list || Termux tools list || Termux packages || termux hacking tools || termux hacking commands 

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Soon I am uploading more termux tools ✌, stay with me.

(In which topic you want next post ???

Any specific termux tools ?? )

Comment Below !!! 

Thank you 😊 (Meet you in next post )

Post a Comment

Previous Post Next Post