2

Gparted shows the following warning about a partition.
9.23 GiB of unallocated space within the partition.
To grow the file system to fill the partition, select the partition and choose the menu item:
Partition --> Check
After attempting to do that check and repair operation in gparted I get the following error:

http://www.w3.org/1999/xhtml' xml:lang='en-US' lang='en-US'>

GParted Details

GParted 0.25.0 --enable-libparted-dmraid --enable-online-resize

Libparted 3.2

Check and repair file system (ext4) on /dev/sdb2  00:00:00    ( ERROR )

    

calibrate /dev/sdb2  00:00:00    ( SUCCESS )

    

path: /dev/sdb2 (partition)
start: 125001
end: 33681407
size: 33556407 (16.00 GiB)

check file system on /dev/sdb2 for errors and (if possible) fix them  00:00:00    ( ERROR )

    

e2fsck -f -y -v -C 0 /dev/sdb2  00:00:00    ( ERROR )

    

e2fsck 1.42.13 (17-May-2015)
/dev/sdb2 has unsupported feature(s): metadata_csum
e2fsck: Get a newer version of e2fsck!

========================================

I used this command to install e2fsck

sudo apt-get install e2fs*

1 Answers1

2

As indicated by the error message:

e2fsck 1.42.13 (17-May-2015)
/dev/sdb2 has unsupported feature(s): metadata_csum
e2fsck: Get a newer version of e2fsck!

the version of e2fsprogs package is too old to support the feature mentioned.

One way to use a more recent version of e2fsprogs is to boot from more recent live media such as the latest GParted Live. The latest GParted Live 0.30.0-1 includes e2fsprogs 1.43.6-1.

Curtis Gedak
  • 1,159