Inital commit

This commit is contained in:
2026-06-19 23:18:04 +02:00
commit 1bb79dc5a5
46 changed files with 3401 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
# HOOBS Smart-Home-Hub
**Zusammenfassung**: HOOBS (Homebridge-basiert) ist die Smart-Home-Zentrale auf dem PI2. Läuft als `hoobsd.service` und verbindet HomeKit mit Nicht-HomeKit-Geräten.
**Quellen**: 🔌 SSH (`systemctl status hoobsd.service`)
**Zuletzt aktualisiert**: 2026-06-19
---
## Status
| Metrik | Wert |
|---|---|
| **Dienst** | `hoobsd.service` |
| **Aktiv seit** | 4. Juni 2026, 01:28 Uhr |
| **Version** | hoobsd 5.1.8, HOOBS CLI 4.2.4, HOOBS GUI 4.2.2 |
| **CPU-Verbrauch** | ~2 Wochen kumulierte CPU-Zeit |
| **Tasks** | 102 |
| **Port** | 3000 (HTTP Web UI) |
| **Restart** | always (RestartSec=3) |
## Konfiguration
- **Service-Definition**: `/etc/systemd/system/hoobsd.service`
```ini
[Unit]
Description=HOOBSD
After=network-online.target
[Service]
Type=simple
User=root
ExecStart=/usr/bin/hoobsd hub
Restart=always
RestartSec=3
KillSignal=SIGINT
[Install]
WantedBy=multi-user.target
```
## Ports
HOOBS belegt mehrere hochrangige Ports (5182665080) für Child-Prozesse (Plugins, Bridges).
## Verwandte Seiten
- [helm](./helm.md) Helm-UI (Teil von HOOBS)
- [netzwerk](../../Allgemein/netzwerk.md)