Using the in-browser terminal

Using the in-browser terminal

What you'll learn: how to open a terminal right in your panel, when you'd want to, and what to be careful of.

What is it?

The in-browser terminal gives you a command-line connection to your hosting account — the same thing you'd get with SSH, but right inside the panel. No installation, no SSH key setup, just open and type.

How to open it

Sidebar → Sites → Files → click Terminal at the top of the page (or look for a Terminal icon in the sidebar, depending on your panel layout).

A black window opens with a prompt waiting for you.

[screenshot here: in-browser terminal]

What you can do

You're inside your hosting account, in your home folder. You can:

  • Move around with cd folder_name and cd ..
  • List files with ls
  • See where you are with pwd
  • Edit text files with nano filename (friendlier than vim)
  • Run app-specific commands like wp-cli for WordPress
  • Run composer if you're managing PHP packages

You can't do anything outside your account — the terminal is sandboxed to your own files.

Common useful commands

# List files including hidden ones
ls -la

# Find a file by name
find . -name "config.php"

# Search for a word inside files
grep -r "old-domain.com" .

# Edit a text file
nano filename

# Check disk usage of the current folder
du -sh *

When to use the terminal vs the File Manager

Task Best tool
Moving around files File Manager
Editing one file File Manager
Searching across hundreds of files Terminal (grep)
Running a WordPress CLI command Terminal
Bulk renaming or moving Terminal
Just browsing File Manager

A short safety note

The terminal is powerful. A wrong command can wipe your files in seconds. Before running anything you copy-pasted from the internet:

  • Read it first. If it has rm -rf, slow down.
  • Avoid running things as root. You're not root in here, which is a feature.
  • Take a backup before big operations.

Tips

  • Use Tab to autocomplete. Type the first few letters of a file or folder name, hit Tab, and it'll fill in the rest.
  • Use Ctrl+R to search your command history.
  • Close the tab to disconnect. Your session ends when you close.

If something goes wrong

  • The terminal won't open — your account may not have terminal access enabled. Ask your hosting provider.
  • You see "command not found" — the program you typed isn't installed. Many common ones are; if a specific one isn't, ask your provider.
  • You closed the tab and a long task was running — most things stop when you disconnect. Use SSH (with screen or tmux) for long-running tasks.

Related articles