How to use parted for creating patition larger that 2 TB ?


To create partitions larger than 2TB we need to use GPT labels. Standard fdisk doesn’t understand GPT labels so we need to use parted.

Here we are going to partition the disk /dev/sdb

root@localhost ~> parted /dev/sdb

This will bring up parted.  Type help to view the commands in parted prompt.

(parted) help
check NUMBER                             do a simple check on the file system
cp [FROM-DEVICE] FROM-NUMBER TO-NUMBER   copy file system to another partition
help [COMMAND]                           prints general help, or help on COMMAND
mklabel,mktable LABEL-TYPE               create a new disklabel (partition table)
mkfs NUMBER FS-TYPE                      make a FS-TYPE file system on partititon NUMBER
mkpart PART-TYPE [FS-TYPE] START END     make a partition
mkpartfs PART-TYPE FS-TYPE START END     make a partition with a file system
move NUMBER START END                    move partition NUMBER
name NUMBER NAME                         name partition NUMBER as NAME
print [free|NUMBER|all]                  display the partition table, a partition, or all devices
quit                                     exit program
rescue START END                         rescue a lost partition near START and END
resize NUMBER START END                  resize partition NUMBER and its file system
rm NUMBER                                delete partition NUMBER
select DEVICE                            choose the device to edit
set NUMBER FLAG STATE                    change the FLAG on partition NUMBER
toggle [NUMBER [FLAG]]                   toggle the state of FLAG on partition NUMBER
unit UNIT                                set the default unit to UNIT
version                                  displays the current version of GNU Parted and copyright information

root@localhost ~> parted /dev/sdb
GNU Parted 1.8.1
Using /dev/sdb
Welcome to GNU Parted! Type ‘help’ to view a list of commands.
(parted)

To change the label to gpt we run the following command:

(parted) mklabel gpt

Next run the print command: This will list the disk geometry. Please note the size listed:

(parted) print

Model: Adaptec raid5-1 (scsi)
Disk /dev/sdb: 10.7TB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name     Flags

This will tell us where to start and end the partitions. To create one huge partition ( 8 Tb = 8388608 bytes) run the following commands:

(parted) mkpart primary 0 8388607.000

The command reads as make a primary partition, start at 0 and end at 8388607.000

Also, if you are making a partition for a device smaller than the limit from the notes below, you can use the following if the geometry doesn’t show like it does above. Just exit out of parted, and run this from a shell:

root@localhost ~> parted -s — /dev/sdb  mkpart primary ext3 0 -1

This will take the whole disk for creating the partition.

The parition has been created and now you can quit parted:
(parted) quit

Now all that has to be done is to format the partition:(the -m swith tells mkfs to only reserve 1% of the blocks for the super block)

root@localhost ~> mkfs.ext3 -m1 /dev/sdb1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
1024000000 inodes, 2047999751 blocks
20479997 blocks (1.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
62500 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000, 214990848, 512000000, 550731776, 644972544, 1934917632

Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 38 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.

Mount the disk

root@localhost ~> mount /dev/sdb1 /disk1

root@localhost ~> df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda3             240G  2.3G  225G   2% /
/dev/sda1             996M   45M  900M   5% /boot
tmpfs                 2.0G     0  2.0G   0% /dev/shm
/dev/sdb1             7.6T  177M  7.5T   1% /disk1

Now edit /etc/fstab to mount the partiton automatically on boot.

root@localhost ~>vi /etc/fstab

Add the following  line  in /etc/fstab

/dev/sdb1     /disk1   ext3    defaults        0 0

Reference :-  http://www.gnu.org/software/parted/manual/html_mono/parted.html

15 responses to “How to use parted for creating patition larger that 2 TB ?

  1. Hi! I was surfing and found your blog post… nice! I love your blog. 🙂 Cheers! Sandra. R.

  2. Pingback: Zum festhalten: parted, LVM, virsh | pregos blog

  3. Pingback: Как создать партицию больше 2ТБ | olemskoi.ru

  4. It’s great! I solve my problem.

  5. I like the details in your blog. I hope you enjoy to <a href"http://www.receivefreecash.com&quot; Make Free Money Online with my blog too.

  6. Pingback: >Ubuntu File Server Part 7: Drive Formatting | dancingborg

  7. Pingback: 3tb filesystem i have to create in wd usb external hdd and to be mount in Rhel5

  8. I do not understand your formular here:

    ( 8 Tb = 8388608 bytes) => WTF?

    8 TB = 8192 GB = 8388608 MB = 8589934592 KB = 8796093022208 Byte

  9. -m does nothing to the super block, however it does modify the filesystem amount reserved for the super USER.

  10. Yes, Marc Richter is right – there is a mistake here in article.

    When I’m trying to create a partition covering the whole disk parted says this to me:

    (parted) mkpart primary ext4 0 -1
    Warning: The resulting partition is not properly aligned for best performance.
    Ignore/Cancel?

    Does anybody knows how to properly align the partition to get rid of this message? And how badly it will hit performance if I simply ignore the warning?

  11. avzblog – use 1 and -1 to align the partition “for best performance”.

  12. what if i want to create 30 or 50 TB Partition ?
    i faced many problems while i apply these instructions , and finally in this command : mkfs.ext3 -m1 /dev/sdb
    it show me this error :
    mkfs.ext3: Size of device /dev/sdb too big to be expressed in 32 bits
    using a blocksize of 4096.

  13. Asaleh_h, I think you may use another filesystem type for such big partitions, for example ext4 or xfs.

Leave a reply to Receivefreecash Cancel reply