磁盘超过2T,使用fdisk /dev/vdb 报错The size of this disk is 4 TiB (4398046511104 bytes). DOS partition table format can not be used on drives for volumes
larger than 2.2 TB (2199023255040 bytes). Use parted(1) and GUID partition table format (GPT)。
就不能使用fdisk命令来分区,需要使用gdisk命令来分区。
使用gdisk命令对大于2T的磁盘进行分区
gdisk /dev/vdb
对磁盘分区进行格式化
mkfs -t ext4 /dev/vdb1
挂载到目录
mount /dev/vdb1 /home