First use Parted to format the partition into GPT format, and create a partition.
The e2fsprogs version of Red Hat Enterprise 6.5 is lower than 1.41.12, and cannot create file systems larger than 16TB.
Download the latest e2fsprogs: ftp://ftp.ntu.edu.tw/linux/kernel/people/tytso/e2fsprogs/
Compile and install
tar zxvf e2fsprogs-1.42.10.tar.gz
cd e2fsprogs-1.42.10
mkdir build
cd build /
../configure
make
make install
//// gcc compiler needs to be installed, can be installed using yum
Format partition, mount partition
mke2fs -O 64bit, has_journal, extensions, huge_file, flex_bg, uninit_bg, dir_nlink, extra_isize -i 4194304 / dev / sda1
mount / dev / sda1 / mnt
Write the mount information to the fstab file to prevent the system restart partition from being lost.
Red Hat 6.5 mounts disk partitions over 16TB
First use Parted to format the partition into GPT format, and create a partition.
The e2fsprogs version of Red Hat Enterprise 6.5 is lower than 1.41.12, and cannot create file systems larger than 16TB.
Download the latest e2fsprogs: ftp://ftp.ntu.edu.tw/linux/kernel/people/tytso/e2fsprogs/
Compile and install
tar zxvf e2fsprogs-1.42.10.tar.gz
cd e2fsprogs-1.42.10
mkdir build
cd build /
../configure
make
make install
//// gcc compiler needs to be installed, can be installed using yum
Format partition, mount partition
mke2fs -O 64bit, has_journal, extensions, huge_file, flex_bg, uninit_bg, dir_nlink, extra_isize -i 4194304 / dev / sda1
mount / dev / sda1 / mnt
Write the mount information to the fstab file to prevent the system restart partition from being lost.
Red Hat 6.5 mounts disk partitions over 16TB