您的位置:首页 > 其它

USING PARTED ON > 2TB DRIVES TO CREATE NEW PARTITIONS FOR LVM

2014-03-19 09:50 281 查看
fdisk utility doesn’t support storage device that is larger than 2TB. Therefore you need to use GNU “parted” to create your partition.

As root run ‘parted /dev/sdX’ where X is the SAS/SATA/whatever controller’s
drive as presented to the Linux kernel.

At the ‘(parted)’ prompt, enter:

mkpart primary ext3 0 -1

set 1 lvm on

Then ‘quit’ Parted to save your changes to the partition table on the relevant drive.

This creates a new partition assigned the whole drive capacity and gives it the LVM partition type, then saves those changes & exits parted.
http://www.iprobot.net/linux-tutorial/using-parted-on-2tb-drives-to-create-new-partitions-for-lvm/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐