ich versuche mit fdisk eine externe Festplatte zu partitionieren was auch soweit funktioniert wenn ich Partitionen per script hinzufüge unterhalb 10GB (+10G)
sobald ich aber eine Partition größer als 9GB haben möchte bekomme ich als Fehlermeldung: "Value out of range."
Code: Alles auswählen
# create partitions
#2GB <->/
#3GB<-->/boot
#10GB<->/home <---unterhalb 10G funktioniert
#5GB<-->/usr
#6GB<-->/var
#7GB<-->/tmp
#8GB<-->swap
fdisk /dev/sdc << EOF > /dev/null
o
n
p
1
+2G
n
e
2
n
+3G
n
+10G
n
+5G
n
+6G
n
+7G
n
+8G
a
1
t
10
82
w
EOF
fdisk from util-linux 2.29.2 / Deb9.8stretch amd64
Jemand eine Idee was falsch ist ? Ich würde auch gerne bei fdisk bleiben.
Danke