Advertisement
Guest User

Untitled

a guest
Jun 11th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. from here https://askubuntu.com/questions/1106795/ubuntu-server-18-04-lvm-out-of-space-with-improper-default-partitioning
  2.  
  3. 1. # We need to resize the logical volume to use all the existing and free space of the volume group
  4. $ lvm
  5. lvm> lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
  6. lvm> exit
  7.  
  8. 2. # And then, we need to resize the file system to use the new available space in the logical volume
  9. $ resize2fs /dev/ubuntu-vg/ubuntu-lv
  10.  
  11. after reboot and remote log in I get this
  12.  
  13. System load: 0.5 Processes: 178
  14. Usage of /: 40.7% of 57.58GB Users logged in: 0
  15. Memory usage: 5% IPv4 address for enp2s0: 192.168.1.112
  16. Swap usage: 0%
  17.  
  18. Seems to have fixed the problem.
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement