Update README
This commit is contained in:
48
README.md
48
README.md
@ -8,7 +8,7 @@ Ein moderner Wake-on-LAN Manager, entwickelt mit Go und einer schönen Web-Oberf
|
||||
- **Wake-on-LAN**: Ein-Klick-Aufwecken von Computern über MAC-Adressen
|
||||
- **IP-Adressverwaltung**: Pro Gerät wird eine IP-Adresse gespeichert
|
||||
- **Online-Status (Ping)**: Geräte können per Ping geprüft und im UI als Online/Offline angezeigt werden
|
||||
- **Automatischer Autostart**: Scheduler für geplante Wake-on-LAN Ereignisse mit Crontab-Syntax
|
||||
- **Automatischer Start**: Scheduler für geplante Wake-on-LAN Ereignisse mit Crontab-Syntax
|
||||
- **Logging-System**: Vollständige Protokollierung aller WOL-Ereignisse (Button-Klick und Scheduler)
|
||||
- **Moderne Web-Oberfläche**: Responsive Design mit Bootstrap und FontAwesome
|
||||
- **SQLite-Datenbank**: Einfache lokale Datenspeicherung
|
||||
@ -514,49 +514,3 @@ docker run -d -p 9090:9090 -e PORT=9090 medi-wol:latest
|
||||
|
||||
Dieses Projekt ist für den internen Gebrauch bestimmt.
|
||||
|
||||
## Support
|
||||
|
||||
Bei Fragen oder Problemen wenden Sie sich an das Entwicklungsteam.
|
||||
|
||||
Hier sind drei einfache Wege – nimm Variante A (empfohlen) für die neueste Version.
|
||||
|
||||
- A) Offizielles Tarball (empfohlen)
|
||||
1) Alte Installation entfernen (falls vorhanden):
|
||||
```bash
|
||||
sudo rm -rf /usr/local/go
|
||||
```
|
||||
2) Tarball laden und installieren (ersetze 1.22.6 und Arch bei Bedarf: amd64/arm64):
|
||||
```bash
|
||||
wget https://go.dev/dl/go1.22.6.linux-amd64.tar.gz
|
||||
sudo tar -C /usr/local -xzf go1.22.6.linux-amd64.tar.gz
|
||||
```
|
||||
3) PATH setzen (dauerhaft):
|
||||
```bash
|
||||
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile
|
||||
source ~/.profile
|
||||
```
|
||||
4) Prüfen:
|
||||
```bash
|
||||
go version
|
||||
```
|
||||
|
||||
- B) Snap (schnell, meist aktuell)
|
||||
```bash
|
||||
sudo snap install go --classic
|
||||
go version
|
||||
```
|
||||
|
||||
- C) Ubuntu-Paket (einfach, aber oft älter)
|
||||
```bash
|
||||
sudo apt update
|
||||
sudo apt install -y golang-go
|
||||
go version
|
||||
```
|
||||
|
||||
Hinweise:
|
||||
- Standard-GOPATH ist ~/go. Optional:
|
||||
```bash
|
||||
echo 'export GOPATH=$HOME/go' >> ~/.profile
|
||||
echo 'export PATH=$PATH:$GOPATH/bin' >> ~/.profile
|
||||
source ~/.profile
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user