Hallo, ich versuche mit sfdisk einen USB-STICK mit einer großen Partition zu partitionieren. Dazu übergebe ich dem sfdisk die Optionen über stdin. echo "1,,*,f" |sfdisk /dev/sdc Er legt auch eine Partition an, aber wohl zu klein.... Checking that no-one is using this disk right now ... OK Disk /dev/sdc: 1020 cylinders, 126 heads, 62 sectors/track sfdisk: ERROR: sector 0 does not have an msdos signature /dev/sdc: unrecognized partition table type Old situation: No partitions found New situation: Units = cylinders of 3999744 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sdc1 * 1 1019 1019 3980214 f W95 Ext'd (LBA) /dev/sdc2 0 - 0 0 0 Empty /dev/sdc3 0 - 0 0 0 Empty /dev/sdc4 0 - 0 0 0 Empty Successfully wrote the new partition table Re-reading the partition table ... Wenn ich das ganze jetzt mit Fat32 formatieren will krieg ich nen Fehler: mkfs.vfat -F32 /dev/sdc1 mkfs.vfat 3.0.10 (12 Sep 2010) mkfs.vfat: Too few blocks for viable file system Paritioniere ich das ganze mit fdisk von Hand passt das ganze, die Partition ist auch Größer. sfdisk -l /dev/sdc Disk /dev/sdc: 1020 cylinders, 126 heads, 62 sectors/track Warning: The partition table looks like it was made for C/H/S=*/42/34 (instead of 1020/126/62). For this listing I'll assume that geometry. Units = cylinders of 731136 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sdc1 * 1+ 5581- 5581- 3984384 83 Linux start: (c,h,s) expected (1,18,9) found (0,33,3) end: (c,h,s) expected (1023,41,34) found (1020,41,34) /dev/sdc2 0 - 0 0 0 Empty /dev/sdc3 0 - 0 0 0 Empty /dev/sdc4 0 - 0 0 0 Empty Mosert zwar rum, aber die Pratition scheint OK und lässt sich formatieren. Weiß jemand, wo mein Denkfehler liegt? Gruß Daniel -- Daniel Spannbauer Software Entwicklung marco Systemanalyse und Entwicklung GmbH Tel +49 8333 9233-27 Fax -11 Rechbergstr. 4 - 6, D 87727 Babenhausen Mobil +49 171 4033220 http://www.marco.de/ Email ds@marco.de Geschäftsführer Martin Reuter HRB 171775 Amtsgericht München -- Um die Liste abzubestellen, schicken Sie eine Mail an: opensuse-de+unsubscribe@opensuse.org Um den Listen Administrator zu erreichen, schicken Sie eine Mail an: opensuse-de+owner@opensuse.org
Hallo, Am Tue, 14 Aug 2012, Daniel Spannbauer schrieb:
Dazu übergebe ich dem sfdisk die Optionen über stdin. echo "1,,*,f" |sfdisk /dev/sdc ^!!
Device Boot Start End #cyls #blocks Id System /dev/sdc1 * 1 1019 1019 3980214 f W95 Ext'd (LBA) ^!!
Was erwartest du? Eine erweiterte Partition ist nur ein Container! echo "1,,*,c" |sfdisk /dev/sdc Damit erstellst du ne Partition mit FAT32 LBA Kennung und es sollte klappen. -dnh -- Warning: Pregnancy can cause birth -- Um die Liste abzubestellen, schicken Sie eine Mail an: opensuse-de+unsubscribe@opensuse.org Um den Listen Administrator zu erreichen, schicken Sie eine Mail an: opensuse-de+owner@opensuse.org
Am 08/14/2012 10:37 PM, schrieb David Haller:
Hallo,
Am Tue, 14 Aug 2012, Daniel Spannbauer schrieb:
Dazu übergebe ich dem sfdisk die Optionen über stdin. echo "1,,*,f" |sfdisk /dev/sdc ^!!
Device Boot Start End #cyls #blocks Id System /dev/sdc1 * 1 1019 1019 3980214 f W95 Ext'd (LBA) ^!!
Was erwartest du? Eine erweiterte Partition ist nur ein Container!
echo "1,,*,c" |sfdisk /dev/sdc
Damit erstellst du ne Partition mit FAT32 LBA Kennung und es sollte klappen.
Hmmm, ne erweiterte ist doof, da hast du natürlich recht. Wie komm ich denn auf das schmale Brett? Naja, egal. Danke jedenfalls :) Gruß Daniel -- Daniel Spannbauer Software Entwicklung marco Systemanalyse und Entwicklung GmbH Tel +49 8333 9233-27 Fax -11 Rechbergstr. 4 - 6, D 87727 Babenhausen Mobil +49 171 4033220 http://www.marco.de/ Email ds@marco.de Geschäftsführer Martin Reuter HRB 171775 Amtsgericht München -- Um die Liste abzubestellen, schicken Sie eine Mail an: opensuse-de+unsubscribe@opensuse.org Um den Listen Administrator zu erreichen, schicken Sie eine Mail an: opensuse-de+owner@opensuse.org
participants (2)
-
Daniel Spannbauer
-
David Haller