no problem, You cannot use fdisk for it as that is for ms-dos partitions
you can use the program like "gdisk", in the last version of fvdw-sl it is included.
For GPT you don't need to define extended partitons to be able to make more then 4 partitions. The partitions are number now from 1 to 8.
Partitions 1,2,3 should made: 512 MB,
partition 4: 8 MB,
partition 5: 768 MB,
partition 6: 8 MB,
partition 7: 512 MB and
partition 8 the rest of the disk
This are the commands to be used to make the partition table when using gdisk (it also is stetting the right block size)
- Code: Select all
x
l
4096
m
n
1
<hit enter, accept default value>
+512M
8300
n
2
<hit enter, accept default value>
+512M
8300
n
3
<hit enter, accept default value>
+512M
8200
n
4
<hit enter, accept default value>
+8M
8300
n
5
<hit enter, accept default value>
+768M
8300
n
6
<hit enter, accept default value>
+8M
8300
n
7
<hit enter, accept default value>
+512M
8300
n
8
<hit enter, accept default value>
<hit enter, accept default value>
8300
w
y