Support · 02 / 03
Hermes 101 Command Sheet
Copy the core Hermes 101 setup commands without theory.
Hermes 101 Command Sheet
Copy station - Commands only. Use this during live setup. Replace placeholders before running. Do not paste secrets into screenshots or public chats.
What this is
This is the quick copy/paste sheet for Hermes 101.
Why it matters
During setup, you need clean commands more than long explanations.
What to do
Run the SSH command from your laptop terminal. After you log in, run the remaining server commands inside the VPS terminal. If you are not sure where you are, ask before continuing.
Laptop command - SSH into server:
ssh root@YOUR_SERVER_IPSwipe sideways if a command is long.
VPS commands - update server:
sudo apt update && sudo apt upgrade -y
sudo apt install -y curl git tmuxSwipe sideways if a command is long.
Add 2GB swap:
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile || true
grep -q '^/swapfile ' /etc/fstab || echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
free -hSwipe sideways if a command is long.
If /swapfile already exists, ask the facilitator before rerunning the whole block.
Install Hermes:
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
source ~/.bashrc
hermes --version
hermes doctorSwipe sideways if a command is long.
Set up model/API with OpenRouter as the default:
hermes modelSwipe sideways if a command is long.
Or run the full wizard:
hermes setupSwipe sideways if a command is long.
Use the facilitator's exact starter model. Do not choose a random premium model.
Start Hermes:
hermesSwipe sideways if a command is long.
Optional gateway:
hermes gateway setup
hermes gateway install
hermes gateway statusSwipe sideways if a command is long.
Downloads:
Common mistakes
- Running commands with
YOUR_SERVER_IPstill unchanged. - Copying two command blocks at once when you only need one.
- Sharing API keys while asking for help.
- Treating optional gateway commands as required.
Next step
Use Optional Telegram Setup only after the core path works.