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 nodejs2. Installa OpenClaw
curl -fsSL https://openclaw.bot/install.sh | bash3. Configura il servizio systemd
openclaw onboard --install-daemonFedora / RHEL / CentOS
# Installa Node.js 22
sudo dnf module install nodejs:22
# Installa OpenClaw
curl -fsSL https://openclaw.bot/install.sh | bashArch Linux
# Installa Node.js
sudo pacman -S nodejs npm
# Installa OpenClaw
npm install -g openclawGestione 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