Skip to main content

How to use the Claude Code VPS template

Getting started with Claude Code VPS template

Updated this week

Claude Code is a command-line interface (CLI) that allows you to interact with Anthropic’s Claude language model directly from your terminal. With it, you can run prompts, manage conversations, and integrate AI into development workflows using simple text commands. The "Ubuntu 24.04 with Claude Code" VPS template comes with Claude Code pre-installed, so you can start using it right away.

Accessing Your VPS

After deploying the template, you can access Claude Code in two ways:

  • Via SSH: Use a terminal on your computer to connect with:

ssh root@[your-vps-ip]
  • Via Browser Terminal: Open your VPS dashboard in hPanel and launch the browser terminal directly from there.

Using Claude Code

Once connected, you can start using Claude Code immediately. To begin, log in to your Claude account by running:

claude /login

This will prompt a login URL. Open it in your browser, log in with your Anthropic credentials, and authorize the CLI.

Basic Commands

Here are some useful commands to get started. Open an interactive session:

claude

Run a one-line prompt:

claude "Explain the difference between TCP and UDP."

View help for all available commands:

claude /help

Managing Conversations

Claude CLI supports persistent threads. You can start and manage them with commands like:

Create a new thread:

claude /thread new "Weekly planning session"

List all threads:

claude /thread list

Switch to an existing thread:

claude /thread switch [THREAD_ID]

The "Ubuntu 24.04 with Claude Code" template gives you everything needed to begin working with Claude from the command line. With the CLI already installed and ready, you can immediately begin creating prompts, building automations, or integrating Claude into your development environment. For advanced features and documentation, visit the official Claude Code page.

Did this answer your question?