Stumbled about a problem with gpt:
[root@someserver ~]# parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: VMware Virtual disk (scsi)
Disk /dev/sdb: 8619GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 32.3kB 2022GB 2022GB primary lvm
I would need to create (one or more) additional partitions using msdos format. As far as I know msdos can only store up to 2 TB per partition.
How can I add additional partitions using the maximal amount per msdos partition?
Would a simple call to mkpart logical 0% 100%
be enough?
dev/sdb
usinggpt
as partition table type. This new partition should use GPT so I can use the additional space (2023GB-8619GB) as size for this additional partition. – mathewJohn Mar 02 '20 at 13:04msdos
or a partition table of typegpt
, so if you want to add "a GPT partition" you have to convert the partition table. See also https://unix.stackexchange.com/q/289389/330217 – Bodo Mar 02 '20 at 13:12/dev/sdb
I would need to create additional 3 partitions each with 2TB space because of msdos (in case I don't want to convert the partition table)? – mathewJohn Mar 02 '20 at 13:17