Created
December 12, 2024 01:57
-
-
Save ilhamarrouf/7726f2d851aad4d348e9fa7ead8a75c9 to your computer and use it in GitHub Desktop.
Auto expand last partition to use all unallocated space, using parted in batch mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 2023/2024's solution for Ubuntu 22.04 LTS | |
| # Boot into Ubuntu Live CD | |
| sudo parted /dev/sda print free | |
| sudo parted /dev/sda resizepart 4 100% | |
| # sudo e2fsck -f /dev/sda2 | |
| sudo resize2fs /dev/sda4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment