Created
March 26, 2025 14:30
-
-
Save eduavila/222a0281a89ea6933e868b3c2226b9f7 to your computer and use it in GitHub Desktop.
Estender disco ubuntu 22.04
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
## | |
## Estender espaço de disco disponivel | |
## | |
## Espande para 100% uso do disco | |
lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv | |
## Visualiza alteração | |
lvdisplay | |
## Resize aplicar. | |
resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv | |
## Referencia | |
## https://packetpushers.net/blog/ubuntu-extend-your-default-lvm-space/ | |
## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment