Files
da-HomeNetDocumentation/PI2/Konfiguration/laufwerke-und-speicher.md
T

66 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: laufwerke-und-speicher
description:
published: true
date: 2026-06-28T14:29:35.030Z
tags:
editor: markdown
dateCreated: 2026-06-28T14:29:33.307Z
---
# 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-28
---
## 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 | 103 G | 9 % | `/` |
| `/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)