DEV Community

Ankur jha
Ankur jha

Posted on

Error | The filesystem is already 78642683 (4k) blocks long. Nothing to do!

Error | The filesystem is already 78642683 (4k) blocks long. Nothing to do!

If you are getting this error while running resize2fs command in linux for ext4 volume, run growpart command and then run resize2fs command as shown below:

sudo growpart /dev/xvda 1
sudo resize2fs /dev/xvda1

Top comments (0)