When attempting to resize and old ext4 Partition that was created without the 64bit flag, resize2fs 1.42 will fail if the new size is or exceeds 16TiB.
$ resize2fs -p /dev/mapper/target-device
resize2fs: New size too large to be expressed in 32 bits
I do not want to copy the files to an external medium. I do not want to risk data loss either. How can i resize the volume safely?
With the option
-O 64bit
(enabled by default in filesystems created today), ext file systems can span 1024 PiB instead of just 16 TiB volumes. You can upgrade your old filesystem to activate this option.Before you start
$ cat /proc/partitions
, reboot if necessary.1.43
(2016-05-17) or greaterUbuntu 20.04
(2020-04-23) ships withe2fsprogs 1.45.x
(good!)Ubuntu 18.04
(2018-04-26) ships withe2fsprogs 1.44.x
(good!)Ubuntu 16.04
(2016-04-21) was released withe2fsprogs 1.42.12
(2014-08-25) - upgrade to a newer release or install a newer version manually (see end of this answer):Steps for a disk at
/dev/mapper/target-device
Step 1: Properly umount
Step 2: Ensure consistency before starting
-n
flag means to not make changes. Depending on what caused the errors, lettinge2fsck
attempt repair may help.Step 3: Enable 64bit support in the filesystem
Do consider reading
man tune2fs
andman resize2fs
- you may wish to change some other filesystem flags as well. On a typical HDD RAID, this takes 4 minutes of high IO & CPU load.Step 4: Resize
If you do not pass a size on the command line, resize2fs assumes "grow to all space available" - this is typically what you want.
On a typical HDD RAID, this takes 4 minutes of high IO & CPU load. The
-p
flag enables progress bars - but those only display after some initial steps.Step 5: Check again
e2fsck of newer versions may suggest to fix timestamps or extent trees. This is not an indication of any serious issue and you may chose to fix it now or later.
If errors occur, do not panic and do not attempt to write to the volume; consult someone with extensive knowledge of the filesystem, as further operations would likely destroy data!
If no errors occur, remount the device:
Enjoy the new space!
If using ancient versions: Extra steps to enable source package support, download and compile a newer version of
e2fsprogs
on older systems:You will not need any non-Ubuntu version of e2fsprogs for continued operation of the upgraded filesystem - the kernel supports those for quite some time now. It is only necessary to initiate the upgrade.
For reference, there is a similar error message mke2fs will print if it is asked to create a huge device with inappropriate options:
It happened to me recently, with an Ubuntu 18.04 that had been updated after being installed initially with a 16.04 Ubuntu ... The storage array (/dev/sdb) had been initially partitioned into two 14 TB partitions, and that's by wanting to enlarge the first partition to 28 TB that the problem occurred.
I did not need to download a new version of resize2fs because it was very recent.
The only problem was to convert 64-bit partition 1 which had been formatted in 32 bits ... Instead of inviting the reader to consult the documentation of tune2fs (as Anx suggests), I propose a real example!
Finally, we enlarge the disk partition!
If you cannot umount due to "busy filesystem", boot off LiveCD (Ubuntu Desktop). Use v18.04+ since it already has resize2fs v1.44.