Ubuntu 18 使用空間不足 無法寫入或是安裝應用程式
安裝程式或是昇級系統時無法安裝,出現無法寫入的情形,sudo無效,因為裝的東西不多,應該硬碟實體還是有空間的,所以要來處理一下。
作業環境:Ubuntu 18 server
檢查硬碟空間: $df -h
發現 /dev/mapper/ubuntu--vg-ubuntu--lv usage:100%
但是硬碟使用量遠小於實體硬碟容量
解法:
# 邏輯容量 lvm 調到使用所有能用容量(volume group)
$ lvm
lvm> lvextend -l 100%FREE /dev/somewhere/ubuntu--vg-ubuntu--lv(有的網頁是說用 /dev/ubuntu-vg/ubuntu-lv)
lvm> exit
# 重設檔案系統,取用新的邏輯容量可用空間
$ resize2fs /dev/somewhere/ubuntu--vg-ubuntu--lv
resize2fs 1.44.1 (24-Mar-2018)...........
# 重新檢查可用空間
$ df -h
/dev/somewhere/ubuntu--vg-ubuntu--lv usage < 100%
要管理 lvm 可以深入了解以下這些:
Physical Volume (PV) => The physical space on a drive.
Volume Group (VG) => An abstracted amount of drive space that can be split between multiple drives/devices.
Logical Volume (LV) => The space that ubuntu "sees"
HowTo 可以看這裏
作業環境:Ubuntu 18 server
檢查硬碟空間: $df -h
發現 /dev/mapper/ubuntu--vg-ubuntu--lv usage:100%
但是硬碟使用量遠小於實體硬碟容量
解法:
# 邏輯容量 lvm 調到使用所有能用容量(volume group)
$ lvm
lvm> lvextend -l 100%FREE /dev/somewhere/ubuntu--vg-ubuntu--lv(有的網頁是說用 /dev/ubuntu-vg/ubuntu-lv)
lvm> exit
# 重設檔案系統,取用新的邏輯容量可用空間
$ resize2fs /dev/somewhere/ubuntu--vg-ubuntu--lv
resize2fs 1.44.1 (24-Mar-2018)...........
# 重新檢查可用空間
$ df -h
/dev/somewhere/ubuntu--vg-ubuntu--lv usage < 100%
要管理 lvm 可以深入了解以下這些:
Physical Volume (PV) => The physical space on a drive.
Volume Group (VG) => An abstracted amount of drive space that can be split between multiple drives/devices.
Logical Volume (LV) => The space that ubuntu "sees"
HowTo 可以看這裏
留言
張貼留言