> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.veiseule.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Linux ऐप

# Linux ऐप

The Gateway is fully supported on Linux. **Node is the recommended runtime**.
Bun is not recommended for the Gateway (WhatsApp/Telegram bugs).

Native Linux companion apps are planned. अगर आप एक बनाने में मदद करना चाहते हैं, तो contributions का स्वागत है।

## शुरुआती त्वरित मार्ग (VPS)

1. Node 22+ इंस्टॉल करें
2. `npm i -g openclaw@latest`
3. `openclaw onboard --install-daemon`
4. अपने लैपटॉप से: `ssh -N -L 18789:127.0.0.1:18789 <user>@<host>`
5. `http://127.0.0.1:18789/` खोलें और अपना टोकन पेस्ट करें

चरण-दर-चरण VPS मार्गदर्शिका: [exe.dev](/install/exe-dev)

## इंस्टॉल

* [आरंभ करें](/start/getting-started)
* [इंस्टॉल और अपडेट्स](/install/updating)
* वैकल्पिक प्रवाह: [Bun (प्रायोगिक)](/install/bun), [Nix](/install/nix), [Docker](/install/docker)

## Gateway

* [Gateway रनबुक](/gateway)
* [विन्यास](/gateway/configuration)

## Gateway सेवा इंस्टॉल (CLI)

इनमें से किसी एक का उपयोग करें:

```
openclaw onboard --install-daemon
```

या:

```
openclaw gateway install
```

या:

```
openclaw configure
```

प्रॉम्प्ट आने पर **Gateway सेवा** चुनें।

मरम्मत/माइग्रेट:

```
openclaw doctor
```

## सिस्टम नियंत्रण (systemd उपयोगकर्ता यूनिट)

OpenClaw installs a systemd **user** service by default. Use a **system**
service for shared or always-on servers. The full unit example and guidance
live in the [Gateway runbook](/gateway).

न्यूनतम सेटअप:

`~/.config/systemd/user/openclaw-gateway[-<profile>].service` बनाएँ:

```
[Unit]
Description=OpenClaw Gateway (profile: <profile>, v<version>)
After=network-online.target
Wants=network-online.target

[Service]
ExecStart=/usr/local/bin/openclaw gateway --port 18789
Restart=always
RestartSec=5

[Install]
WantedBy=default.target
```

इसे सक्षम करें:

```
systemctl --user enable --now openclaw-gateway[-<profile>].service
```
