Installazione su Linux

Guida per installare OpenClaw su distribuzioni Linux.

Ubuntu / Debian

1. Installa Node.js 22

curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs

2. Installa OpenClaw

curl -fsSL https://openclaw.bot/install.sh | bash

3. Configura il servizio systemd

openclaw onboard --install-daemon

Fedora / RHEL / CentOS

# Installa Node.js 22
sudo dnf module install nodejs:22

# Installa OpenClaw
curl -fsSL https://openclaw.bot/install.sh | bash

Arch Linux

# Installa Node.js
sudo pacman -S nodejs npm

# Installa OpenClaw
npm install -g openclaw

Gestione Servizio systemd

# Avvia il servizio
sudo systemctl start openclaw

# Abilita avvio automatico
sudo systemctl enable openclaw

# Controlla lo stato
sudo systemctl status openclaw

# Visualizza i log
journalctl -u openclaw -f