I want to extend the size of ext4 but minimum and maximum size are same , what could be done ?
Asked
Active
Viewed 3,414 times
2

George Udosen
- 36,677

Mohit
- 267
1 Answers
0
The partition /dev/sda6
cannot be directly partitioned: it is inside of the extended partition /dev/sda4
, and /dev/sda4
is full.
To increase the size of '/' you will need to:
- first increase the size of '/dev/sda4'
- Move the new 'unallocated space' inside '/dev/sda4' to become adjacent to (next to) '/dev/sda6'
- Increase the size of '/dev/sda6' to include the free space.
None of this should be done while Ubuntu is running. Please create a liveUSB, Back up your data, and boot from the liveUSB, selecting "Try Ubuntu" when prompted. Once booted from the USB you will be able to use gparted
to manipulate the partitions on your disk.

Charles Green
- 21,339
/
root partition. See https://askubuntu.com/questions/226061/how-to-install-the-boot-repair-tool-in-an-ubuntu-live-disc and run the Boot Repair on your system. – Terrance Nov 23 '17 at 14:49