Termux commands list


 Termux commands list 





 This tutorial for education purpose only so I'm not responsible for anything. Spying into someone`s mobile without his/her permission is illegal. Please proceed in own risk.

The most  frequently question ask to the many people how to use a Termux app and what is important command used to operate or handle the Termux application
Many people ask me , sir i can also use the Termux but  i am   not a IT background student
So I informed you that every person use the Termux  
the following component of installing the package in our termux application 
the basic command is given below and learn the that command 
it is useful for who are interested in  this background. 

Package management:

Termux provides APT and dpkg for package management and installating . Termux is similar as  most of the modern use Linux distributions, especially Ubuntu and Debian based distros. The only major difference  that you would not find the File system Hierarchy Standard (FHS). The FHS is found in most of the Linux distributions. Which means you would not find

Installing Packages:

Let’s install the some basic package 
In termux, the command used is: pkg install

Update and upgrade:

pkg update
 pkg upgrade

Installing Python:

pkg install python
To open the termux and give update and upgrade command after that we use the command written in the above to install the python.
For Python2
pkg install python2
To install the python 2 version simply write the above code/command and install the  python2 on your termux
For Python3
pkg install python3
similarly python 3 also download the package  this is  a  new version of python
Installing pip:
pkg install [package name]
install the any package simply write above command and in the last write the package name
ex- pkg install nano 

Installing Git:

pkg install git
simply we can write this command and install the git.

Installing wget:

pkg install wget
similarly we also install the wget package.

Uninstalling Packages:

pkg uninstall pkg-name

List all install packages:

pkg list-all

Installing Deb files:

You can similarly manage dpkg  you can’t install it using pkg install command. To install such a file, dpkg is used.

Installing:

dpkg -i ./package.deb

Uninstalling:

dpkg –remove [package name]

Listing all installed packages:

dpkg -l

Rest of the commands are almost the same ans based on  Debian Linux command line.