xp installation ohne partitionierung ?!

Antworten
Bischoff
Beiträge: 9
Registriert: 24 Okt 2008, 13:44

xp installation ohne partitionierung ?!

Beitrag von Bischoff »

ich habe zugegebener maßen keine ahnung, aber würde mit dem folgenden code nur die platte wie sie ist formatiert?

Code: Alles auswählen

# Create new partitiontable
#disk.deletePartitionTable()
	
# Create fat32 partition
#disk.createPartition(start="0M", end="6000M", fs="fat32", boot=True)

# Create fat32 filesystem on partition
disk.createFilesystem(partition=1, fs="fat32")

# Write Master Boot Record
#disk.writeMasterBootRecord(system='mbrdos')

# Write Partition Boot Record
#disk.writePartitionBootRecord(partition=1, fsType='fat32nt')

# Mount partition 1
disk.mountPartition(partition=1, mountpoint=target)
Benutzeravatar
j.schneider
uib-Team
Beiträge: 1803
Registriert: 29 Mai 2008, 15:14

Re: xp installation ohne partitionierung ?!

Beitrag von j.schneider »

Ja.
Bischoff
Beiträge: 9
Registriert: 24 Okt 2008, 13:44

Re: xp installation ohne partitionierung ?!

Beitrag von Bischoff »

kurz und unmissverständlich :)

danke
Antworten