Wenn du Breitband hast: Lade dir eine Knoppix CD/DVD runter und boote sie. dann solltest du mit
die Karte partitionieren können. ACHTUNG: geht nur, wenn du kein SCSI im System hast, sonst verschieben sich die Partitionen.
Linux Fdisk ist ein bisschen merkwürdig ("p" für Partitionen ansehen, "d" für Löschen, "n" für neue Erstellen (Primär!) und "t" für Typ Wechseln (auf FAT32 stellen, folge den Instruktionen)
Achte auf darauf, das die Ausgabe von Fdisk wirklich deine SD Karte referenziert...
Wenn du den SD Kartenleser einsteckst, dann kommt im Log (dmesg tippen):
Code:
usb-storage: device found at 6
usb-storage: waiting for device to settle before scanning
Vendor: USB2.0 Model: CardReader SD Rev: 0100
Type: Direct-Access ANSI SCSI revision: 00
SCSI device sda: 1984000 512-byte hdwr sectors (1016 MB)
sda: Write Protect is off
sda: Mode Sense: 03 00 00 00
sda: assuming drive cache: write through
SCSI device sda: 1984000 512-byte hdwr sectors (1016 MB)
sda: Write Protect is off
sda: Mode Sense: 03 00 00 00
sda: assuming drive cache: write through
sda: sda1
Heisst: Er hat die Karte an sda gefunden. Steht dort sdb oder was auch immer, dann benutze das mit dem fdisk Kommando
Fdisk Ausgabe sieht so aus dann (das "p" und das "q" habe ich eingegeben):
Code:
fdisk /dev/sda
Command (m for help): p
Disk /dev/sda: 1015 MB, 1015808000 bytes
32 heads, 63 sectors/track, 984 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 984 991747+ 6 FAT16
Command (m for help): q
--> 1GB Sandisk Karte... FAT16, Primäre Partition
Und nun zum Partitionieren:
Code:
fdisk /dev/sda
Command (m for help): p
Disk /dev/sda: 1015 MB, 1015808000 bytes
32 heads, 63 sectors/track, 984 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 984 991747+ 6 FAT16
Command (m for help): d
Selected partition 1
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-984, default 1): 1
Last cylinder or +size or +sizeM or +sizeK (1-984, default 984): +500M
Command (m for help): p
Disk /dev/sda: 1015 MB, 1015808000 bytes
32 heads, 63 sectors/track, 984 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 485 488848+ 83 Linux
Command (m for help): t
Selected partition 1
Hex code (type L to list codes): 6
Changed system type of partition 1 to 6 (FAT16)
Command (m for help): w
... Writing to disk ...
Damit ist die Karte partitioniert, aber nicht formatiert (!) - Das muss Windows dann erledigen (die +500M müssen hier natürlich +1000M bzw ein bissel weniger sein!)