How to Use GPT partition for linux disks larger than 2 TB

Source: Internet
Author: User

In linux, we can convert a large-capacity disk to the GPT format. Because the GPT format disk is equivalent to the 4*16 bytes of the four partition tables originally reserved in the MBR disk, only the first 16 bytes are reserved. Others are similar to extended partitions, the real partition table is 512 bytes later, so there is no limit on four primary partitions for the GPT disk table.

To operate the GPT disk partition table, we need to use the powerful parted command.

Example: Common parted commands

# Parted/dev/sdb
GNU Parted 1.8.1
Using/dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.

(Parted) mklabel gpt
Format the MBR disk as GPT

(Parted) mkpart primary 0 0 100
Divide a primary partition with a starting position of 0 and a size of MB

(Parted) mkpart primary 100 200
Divide a primary partition with a starting position of m and a size of m

(Parted) mkpart primary 0-1

Divide all spaces into one partition

(Parted) print

Print current Partition

(Parted) quit

Some other commands that may be used

(Parted) mklable msdos

If you want to convert the GPT disk into an MBR disk

After partitioning, you must use mkfs. ext3 for formatting.

# Partprobe

# Mkfs. ext3-F/dev/sdb1

In practice:

Take redhat 5 as an example:

Parted/dev/sdb mklabel gpt. Convert to GPT.
Parted/dev/sdb mkpart primary 0 1000000 create 1 TB partition.
Mkfs-t ext3/dev/sdb1
Mount/dev/sdb1/mnt/B
In this way, partition B of A large disk is hung under the mnt directory of the linux system.

Manually mount upon startup

Vi/etc/fstab

/Dev/sdb1/mnt/B auto defaults 0 0

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.