The example I'm using in my case was for a brand-new 3TB secondary storage device (no existing partitions), with the primary drive being for boot and of the MBR type on a smaller dedicated hard drive... hence "sdb" in the example below, instead of "sda."
First, verify the size of your drive:
# fdisk -l /dev/sdbThen, get into the GNU parted shell:
# parted /dev/sdbOnce in the parted shell, issue the following commands...
First, create a GPT partition table:
(parted) mklabel gptSecond, tell parted you'd like to use TB as the unit:
(parted) unit TBThen, tell parted to create the 3TB partition:
(parted) mkpart primary 0.00TB 3.00TBYou may verify the partition table and quit:
(parted) print
(parted) quitAfter that, all you have to do is create your file system and mount the drive.
No comments:
Post a Comment