About the android terminal emulator

If you feel that you are not qualified enough to pass, just work hard until you are satisfied, regardless of what others say. ——Hunter x Hunter     

 

 

Let's see what everyone said~

 

 

1 Introduction

Android Terminal Emulator is a free and open source linux terminal emulator that can run android built-in linux commands. And it supports multiple windows, which is very convenient to use. With it, you can run many linux commands that come with the Android system

2. Download

​​​​​​Download URL

3. use

Installed is the same as the command line linux

4. Commonly used commands

 View directory contents: ls

Switch directory: cd dirpath

Copy the file: cp filel file2

View directory size: du -sh

View disk usage: df -h

screenshot (root) screencap -p /sdcard/screenshot.png

Test network connectivity ping 192.168.1.100

View the current path pwd

View process ps -ef

Pack the file tar -czvf filename.tar.gz filename

Extract the file tar -xzvf filename.tar.gz

View text content cat file.txt

View the installed application package name  pm list packages

Uninstall the software pm uninstall com.android.example

Install the software pm install /sdcard/example.apk

Compute file md5 md5sum filename

Change file execution permissions chmod +x file.sh

Run the script ./example.sh

Upload files to the ftp server  ftpput -u username -p password 192.168.1.100 /remote_file /sdcard/local_file

Download files from ftp server ftpget -u username -p password 192.168.1.100 /sdcard/local_file /remote_file

restart reboot

Reboot to recovery: reboot recovery

Reboot to bootloader: reboot bootloader

 
 

5. Expand 

If your phone has root privileges, you can perform more operations after obtaining super user privileges
Obtain super user privileges su


After obtaining the root authority, you can view the system directory, partition, and change the read and write permissions of the system.
It is recommended to install busybox. busybox integrates many simplified versions of linux commands in one, and its size is small. After installation, you can run more linux commands, such as wget, vi, sed, etc.
The installation tutorial of busybox: click here


 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

おすすめ

転載: blog.csdn.net/s_sos0/article/details/131498995