add INSTALL.md
This commit is contained in:
parent
a518c4b067
commit
665fe41d89
36
INSTALL.md
Normal file
36
INSTALL.md
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# 🔧 Installation von `chkip`
|
||||||
|
|
||||||
|
`chkip` ist ein kleines, praktisches DNS- und Mailserver-Check-Tool für die Kommandozeile.
|
||||||
|
Es benötigt Python 3 und zwei zusätzliche Bibliotheken – und funktioniert komplett ohne Root-Rechte.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🧰 Voraussetzungen
|
||||||
|
|
||||||
|
Du brauchst:
|
||||||
|
|
||||||
|
- ein Linux-System mit Python 3
|
||||||
|
- Git (zum Klonen des Repos)
|
||||||
|
- Die Python-Module `dnspython` und `requests`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📦 Abhängigkeiten installieren
|
||||||
|
|
||||||
|
### Debian / Ubuntu / Linux Mint:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install python3 python3-pip git python3-dnspython python3-requests
|
||||||
|
|
||||||
|
cd
|
||||||
|
git clone https://git.bouquet24.de/paase/chkip.git
|
||||||
|
cd chkip
|
||||||
|
|
||||||
|
|
||||||
|
mkdir -p ~/.local/bin
|
||||||
|
cp chkip.py ~/.local/bin/chkip
|
||||||
|
chmod +x ~/.local/bin/chkip
|
||||||
|
|
||||||
|
echo -e "alias chkip='python3 ~/.local/bin/chkip'" >> $HOME/.bashrc
|
||||||
|
source ~/.bashrc
|
Loading…
Reference in New Issue
Block a user