If you are a new Termux user,you might have to face some troubles of using Termux.But with practice you can become proficient with Termux.
Assuming that you are a beginner in Termux I have written this article.This article will help you using Termux after first time installing the application.And if you not a beginner you can skip this article because it can be annoying for you.
Let's say before we start,if you do any spelling mistake you might have to face some error problem so use these commands step by step carefully
1.Type your first command
$ uname
2.To know your present working directory
$ pwd
3.To see all directories and files under your working directory
$ ls
5.To clear the screen
$ clear
6.Update your packages
$ pkg update
7.upgrade packages
$ pkg upgrade
8.To install a package
$ pkg install <pkg name>
Like as if you want to install python use command. $ pkg install python
9.To remove packages
$ pkg remove <pkg name>
10.To install a package from GitHub
$ git clone <url>
Like as git clone https://github.com/TechnicalB9T/StormBraker-android.git
11.To create a file
$ touch <file name>
Like as $ touch file.txt
12.To create a directory
$ mkdir <dir name>
Like as mkdir $ mkdir newdir
13.Delete a directory or file
$ rm -rf <file/dir name>
Like ase $ rm -rf file.txt
14.To see all contents under a file
$ cat <file nane>
14.To change your directory
$ cd <dir name>
14.change your directory to home
$ cd ~
15.To see your all previous commands
$ history
16.To close Termux
$ exit
There are many more commands that I didn't write.I know gradually you will learn after using this following commands.
0 Comments