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.

Terminal main screen
Terminal

Quick Start

1
Open Terminal

Access from main screen toolbar or tools menu

2
Type Command

Enter your shell command in the input field

3
Execute

Tap send or press Enter to run the command

4
View Output

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.

Pro Tip: Check your privilege level with 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:

1
Tap SSH Button

Create new session and tap "SSH" or connection button

2
Enter Server Details

Hostname/IP, port (default 22), username, password or SSH key

3
Connect

Tap connect and authenticate with the remote server

4
Execute Commands

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