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
@@ -0,0 +1,55 @@
# Laufwerke und Speicher Raspberry PI2
**Zusammenfassung**: Der Raspberry PI2 hat eine SD-Karte als Systemlaufwerk, einen USB-Stick für Pi-hole und Konfiguration sowie eine 1,8-TB-USB-Festplatte als Datengrab.
**Quellen**: 🔌 SSH (`lsblk`, `df -h`)
**Zuletzt aktualisiert**: 2026-06-19
---
## Laufwerke (lsblk)
```
NAME SIZE TYPE FSTYPE MOUNTPOINT
sda 57,3G disk ext4 /media/usbstick
sdb 1,8T disk
└─sdb1 1,8T part ntfs /media/Seagate-Expansion
mmcblk0 119,1G disk
├─mmcblk0p1 256M part vfat /boot
└─mmcblk0p2 118,8G part ext4 /
```
## Speicherbelegung (df -h)
| Dateisystem | Größe | Benutzt | Verfügbar | Belegt | Mountpoint |
|---|---|---|---|---|---|
| `/dev/root` | 117 G | 11 G | 102 G | 10 % | `/` |
| `/dev/mmcblk0p1` | 253 M | 51 M | 202 M | 20 % | `/boot` |
| `/dev/sda` | 57 G | 18 G | 37 G | 33 % | `/media/usbstick` |
| `/dev/sdb1` | 1,9 T | 1,2 T | 675 G | 64 % | `/media/Seagate-Expansion` |
## Speicherdetails
### SD-Karte (mmcblk0 System)
- **Typ**: microSD (119 GB)
- **Root-Partition**: ext4, 118,8 GB, 10 % belegt (11 GB)
- **Boot-Partition**: vfat (FAT32), 256 MB, 20 % belegt
- **Keine Verschlüsselung**
### USB-Stick (sda Pi-hole/Sonstiges)
- **Gerät**: SanDisk Ultra Fit (USB 2.0)
- **Größe**: 57 GB
- **Dateisystem**: ext4
- **Mount**: `/media/usbstick` (33 % belegt 18 GB)
- Enthält: Betriebssystem-Verzeichnisstruktur (wirkt wie ein zweites Root-FS)
### Seagate Expansion HDD (sdb1 Datengrab)
- **Gerät**: Seagate RSS LLC SRD0NF1 Expansion Portable (STEA)
- **Größe**: 1,8 TB
- **Dateisystem**: ntfs
- **Mount**: `/media/Seagate-Expansion` (64 % belegt 1,2 TB)
- Enthält: `Media/`, `BackUp/`, `CloudBackup/`, `Paperless/`, `PlexMediaServer/`, `Picture/`, `www/` u.a.
## Verwandte Seiten
- [systemuebersicht](./systemuebersicht.md)
- [samba](./dienste/samba.md)