Hi David M ,
We have noticed that you rated an answer as not helpful. We appreciate your feedback and are committed to improving your experience with the Q&A. I have worked on finding an alternative solution to address your issue.
- First verify by executing these commands; df -h and lsblk
- Afterwards execute below command to manage partition sudo fdisk /dev/sdc and after this you will get a pop up then enter "p" , afterwards enter "d" , then later enter "n" and default partition(1) and press "enter" two times and finally enter "w". Now the partitions has been altered.
- Now verify using "lsblk" command.
- Now, execute df -h , it still shows /dev/sdc1 as 128G. So, first we need to check the file system of /dev/sdc1 by using a command "df -hT" as a result it shows as xfs file system.
- Now, to resize the xfs file system, you need to execute below command sudo xfs_growfs /dev/sdc1
- Finally, the /dev/sdc1 is resized to 256G. You can verify by executing "df -h" and "lsblk" commands.
If the information is helpful, please click on "Upvote".
If you have any further queries, please let us know.