The issue you're encountering is likely due to the use of the MBR (Master Boot Record) partitioning scheme. MBR has a partition size limitation of 2TB. If you have disks larger than 2TB and you want to use the entire space in a single partition, you should use the GPT (GUID Partition Table) partitioning scheme instead of MBR.
To use the full capacity of a 3TB (or larger) disk on RHEL6, you'd want to use the GPT format. Here's how you can create a GPT partition:
-
Backup any data: Before making any changes to the disk, ensure you've backed up any data on it.
-
Install
gdisk
: Thegdisk
utility is a version offdisk
for GPT. It might not be installed by default:
sudo yum install gdisk