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_IPVPS commands - update server:
sudo apt update && sudo apt upgrade -y
sudo apt install -y curl git tmuxAdd 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 -hIf /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 doctorSet up model/API with OpenRouter as the default:
hermes modelOr run the full wizard:
hermes setupUse the facilitator's exact starter model. Do not choose a random premium model.
Start Hermes:
hermesOptional gateway:
hermes gateway setup
hermes gateway install
hermes gateway statusDownloads:
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.