• Schwierigkeitsgrad: Fortgeschrittener

Festplatte einrichten:

ACHTUNG! Ab hier besteht die Gefahr von Datenverlust. Bitte vorher das Gehirn einschalten und denkt dran, ich übernehme kein Garantie für Eure Daten :)

Die angeschlossene HDD war benutzt, also müssen die vorhandenen Partitionen gelöscht werden. 

Mit fdisk schauen wir uns erstmal alles an.

130 root@bananapi ~ # fdisk -l
Disk /dev/sda: 119.2 GiB, 128035676160 bytes, 250069680 sectors

Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000ebd3b
Device Boot Start End Sectors Size Id Type

/dev/sda1 * 2048 242356223 242354176 115.6G 83 Linux
/dev/sda2 242358270 250068991 7710722 3.7G 5 Extended
/dev/sda5 242358272 250068991 7710720 3.7G 82 Linux swap / Solaris
Disk /dev/mmcblk0: 3.7 GiB, 3980394496 bytes, 7774208 sectors

Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x0ccea0b3
Device Boot Start End Sectors Size Id Type

/dev/mmcblk0p1 2048 43007 40960 20M 83 Linux
/dev/mmcblk0p2 43008 3710936 3667929 1.8G 83 Linux

Danach wählen wir die Platte aus, die bearbeitet werden soll.

root@bananapi ~ # fdisk /dev/sda
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help):

Dann mit "d" Partition auswählen.

Command (m for help): d
Partition number (1,2,5, default 5): 5
Partition 5 has been deleted.

Das dann für alle Partitionen wiederholen.

Zum Schluß mit w die Änderungen auf die Platte schreiben.

Nun erzeugen wir eine neue Partition

fdisk /dev/sda
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Command (m for help): n
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-250069679, default 2048): 2048
Last sector, +sectors or +size{K,M,G,T,P} (2048-250069679, default 250069679): 250069679
Created a new partition 1 of type 'Linux' and of size 119,2 GiB.

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

Schauen wir uns das Ergebnis nochmal an.

root@bananapi ~ # fdisk -l

Disk /dev/sda: 119,2 GiB, 128035676160 bytes, 250069680 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000ebd3b
Device Boot Start End Sectors Size Id Type
/dev/sda1 2048 250069679 250067632 119,2G 83 Linux
Disk /dev/mmcblk0: 3,7 GiB, 3980394496 bytes, 7774208 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x0ccea0b3
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 2048 43007 40960 20M 83 Linux
/dev/mmcblk0p2 43008 7774207 7731200 3,7G 83 Linux