Modify SSH command and update Openclaw installation

Updated SSH command to include TTY allocation and changed installation method for Openclaw.
This commit is contained in:
Harmeet Singh 2026-01-30 14:15:07 +05:30 committed by GitHub
parent 9edc40ff7b
commit 9ca4075e6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,9 +123,10 @@ Look for the IP address (usually `192.168.64.x`).
## 5) SSH into the VM ## 5) SSH into the VM
```bash ```bash
ssh youruser@192.168.64.X ssh -t youruser@192.168.64.X
``` ```
`-t` TTY allocation, which later required for openclaw installation.
Replace `youruser` with the account you created, and the IP with your VM's IP. Replace `youruser` with the account you created, and the IP with your VM's IP.
--- ---
@ -135,8 +136,7 @@ Replace `youruser` with the account you created, and the IP with your VM's IP.
Inside the VM: Inside the VM:
```bash ```bash
npm install -g openclaw@latest curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon
``` ```
Follow the onboarding prompts to set up your model provider (Anthropic, OpenAI, etc.). Follow the onboarding prompts to set up your model provider (Anthropic, OpenAI, etc.).