2019-09-23 07:36:52 +00:00
|
|
|
# server-befehle
|
|
|
|
|
2019-09-23 07:39:21 +00:00
|
|
|
## Wichtige Befehle
|
|
|
|
Festplattenverbrauch ermitteln:
|
|
|
|
```
|
|
|
|
df -h
|
|
|
|
```
|
|
|
|
Rsync ohne Rechteübernahme (gut für gemountete Laufwerke SAMBA)
|
|
|
|
```
|
|
|
|
sudo rsync -rltv --exclude '/storage/tzm_de/var/lib/nextcloud/*' /storage/ /mnt/backup-storage/
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Gute Quellen
|
|
|
|
* Bash-Skripte: https://wiki.ubuntuusers.de/Shell/Bash-Skripting-Guide_für_Anfänger/
|
|
|
|
* Cronjobs: https://www.stetic.com/developer/cronjob-linux-tutorial-und-crontab-syntax.html
|