Terminal
Full command-line interface for your Android device. Execute shell commands, run scripts, connect via SSH, and automate tasks with root, Shizuku, or standard shell support.
Quick Start
Access from main screen toolbar or tools menu
Enter your shell command in the input field
Tap send or press Enter to run the command
Results appear in the terminal with color-coded formatting
Privilege Levels
Terminal automatically uses the best available privilege:
Root
Full system access. Commands run with superuser privileges. Highest level.
Stealth Service
ADB-level privileges without root. Many system commands work. Requires Stealth Service installation.
Standard Shell
Regular user privileges. Limited system access but works for most commands.
whoami command or view the status indicator.
Built-in Commands
Multiple Sessions
Independent Tabs
Each session runs independently. Switch between them using tabs at the top.
Create Sessions
Tap the + button to create new terminal tabs. Run multiple commands simultaneously.
Close Sessions
Tap the X button on any tab to close that session.
Session History
Command history is per-session. Use up/down arrows to navigate previous commands.
SSH Connections
Connect to remote servers via SSH:
Create new session and tap "SSH" or connection button
Hostname/IP, port (default 22), username, password or SSH key
Tap connect and authenticate with the remote server
Run commands on the remote server just like local terminal
Scripts
Create Scripts
Tap "Scripts" → "New Script". Enter name and commands, then save.
Run Scripts
Open Scripts menu, select a script, tap "Run". View output in terminal.
Schedule Scripts
Enable scheduling in script settings. Set time and recurrence for automatic execution.
Script Library
Save frequently used commands as scripts for quick access.
Common Commands
System Information
# Android version
getprop ro.build.version.release
# Device model
getprop ro.product.model
# CPU info
cat /proc/cpuinfo
# Memory info
cat /proc/meminfo
File Operations
# List files
ls -la
# Change directory
cd /sdcard
# Create directory
mkdir newfolder
# Copy file
cp file1.txt file2.txt
# Delete file
rm file.txt
Process Management
# List processes
ps
# Kill process
kill [PID]
# Find process
ps | grep appname
Network Commands
# Network interfaces
ifconfig
# Ping server
ping google.com
# Network connections
netstat
Use Cases
System Administration
Manage device at low level, modify system files, configure advanced settings.
Automation
Create scripts to automate repetitive tasks and system maintenance.
Remote Access
Connect to remote servers via SSH for administration and file management.
Development
Use terminal for development tasks, debugging, and testing.
Troubleshooting
Command Not Found
- Check command spelling
- Verify command available on Android
- Try full path to command
- Check if root/Shizuku needed
Permission Denied
- Check privilege level (whoami)
- Try running with root if available
- Check file permissions
- Verify required access
SSH Connection Failed
- Verify server address and port
- Check username and password/key
- Ensure server allows SSH
- Check network connectivity
Scripts Not Running
- Check script syntax
- Verify execute permissions
- Check scheduled script permissions
- Review script output for errors