Web Terminal

GAGOS includes a full PTY terminal accessible from your browser.

Features

Usage

  1. Click Terminal icon on desktop
  2. Terminal window opens with shell prompt
  3. Type commands as normal

Keyboard Shortcuts

Shortcut Action
Ctrl+C Interrupt current command
Ctrl+D End of input / Exit
Ctrl+L Clear screen
Ctrl+A Move to beginning of line
Ctrl+E Move to end of line
Tab Auto-complete
Up/Down Command history

Copy & Paste

Available Tools

The GAGOS container includes common CLI tools:

Use Cases

Quick Debugging

# Check DNS resolution
dig kubernetes.default.svc.cluster.local

# Test connectivity
curl -v http://my-service:8080/health

# Check environment
env | grep -i kube

File Operations

# View files
ls -la /data

# Edit config
vi /tmp/config.yaml

Security