WARNING! Backup your data before proceeding!
For me this process didn’t destroy the data. I completely expected it to, but it didn’t. Make sure you backup in case you’re not as fortunate.
Move into Single Users Modesudo init 1
Unmount partition in questionsudo umount /mnt/disk1
Launch PartEd pointing at the disk in questionsudo parted /dev/sdb<br />
Make the Partition Table GPTmklabel gpt<br />
Accept the warning and quit PartEdWarning: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do you want to continue?<br /> Yes/No? yes<br /> (parted)<br /> quit
Check the disk (resize2fs required this before it would resize the partition)sudo e2fsck -f /dev/sdb1
Resize the partition to fill the total available disk spacesudo resize2fs /dev/sdb1
Mount the disk againsudo mount /mnt/disk1