Mehrere Partionen (FAT32 - HFS+) mit Terminal anlegen

W

willimu

Neues Mitglied
Thread Starter
Dabei seit
22.08.2004
Beiträge
18
Reaktionspunkte
0
Tach Kollegen!

Gemäß einem Tipp von Ebbi aus einem älteren thread hab ich folgendes probiert:

[Administrators-Computer:~] admin% sudo diskutil partitionDisk disk1 2 MBRFormat MS-DOS SAM_WIN 32G HFS+ SAM_MAC 96G

und bekomme immer diese Antwort:

There do not appear to be enough arguments for the number of partitions you specified.


Außerdem bekomme ich mit: man diskutil

nur die Meldung, daß kein solches Manual existiert.

Was tun?

Gruß

willimu
 
Tipp am Rande: Du brauchst kein sudo mehr, wenn du schon also admin eingeloggt bist ;)
 
Vorgänge die das System beeinflussen oder gefährden können, dürfen nur durch das System vorgenommen werden und das ist der Root, nicht der Admin.


Hier wie man ein Fat 32 erstellt:

Open Disk Utility. Find the disk in the list that you want to format, control-click and select "Information". You're looking for the "Disk Identifier," which should be something like disk1, disk2, disk3 etc.
Create the DOS partition table. Open Terminal and type fdisk -e /dev/rdisk#, where # is the disk number you got from step one. Now type auto dos to create one big FAT32 partition. Finally, type write and then quit to save the new partition table.
Format the FAT32 partition. Type newfs_msdos -F 32 -v "MyVolumeName" /dev/rdisk#s1, where # is the disk number you got in step one. This will format the drive as FAT32.
Check if the volume is mounted. If it isn't, close and reopen Disk Utility, select "MyVolumeName" and choose File -> Mount."
 
Zuletzt bearbeitet:
aber was bedeutet die Meldung ?

was heißt denn hier "arguments" ?

Und warum kriege ich kein manual von diskutil?

Außerdem möchte ich 2 Partitionen anlegen. Eine mit FAT32 und eine mit HFS+ !

Gruß

willimu
 
Mehrere Partitionen mit diskutil - Lösung unter 10.2

Hei willimu,

wahrscheinlich probierst du es unter os x 10.2?
Da hat es bei mir nämlich auch nicht funktioniert, ich habe das Problem mittlerweile aber gelöst.

Die Version von diskutil in 10.2 unterstützt die Option MBRFormat nicht. Wenn du das MBRFormat einfach weglässt, partitioniert er die Platte ohne Probleme.

Allerdings erkennt Windows dann die FAT32-Partition nicht, weil es ja keinen Master Boot Record gibt. Den kann man aber mit den tools pdisk und fdisk schreiben. Wie das geht, wird in diesem posting von silentaccord auf macosxhints erklärt.

Jetzt gibt's noch ein weiteres Problem: Unter 10.2 funktioniert fdisk in der angegebenen Art und Weise nicht. Man kann aber einfach den source code des neueren fdisk von apple runterladen und compilieren, dann funktioniert silentaccord's Weg genau wie beschrieben auch unter 10.2
Wie das Runterladen und Compilieren geht, wird ebenfalls auf macosxhints hier erklärt.

Damit hat bei mir dann alles super funktioniert, Windos erkennt die FAT32-Partition.

Viel Erfolg,
sebseb
 
Zuletzt bearbeitet von einem Moderator:
Zurück
Oben Unten