Linux

合併 LVM 卷

  • March 11, 2017

我對LVM沒有任何經驗。但是,鑑於以下情況:

Filesystem              Size  Used   Avail  Use% Mounted on
/dev/mapper/vg_root      50G   2.1G   45G    5%   /
/dev/mapper/vg_home      1.8T  68M    1.7T   1%   /home

我的目標是在所有可用空間上進行一次/安裝。我怎樣才能做到這一點?

注意:我不需要單獨的/home安裝。

最好遵循這些步驟。直接登錄root,其他使用者不應該登錄。

  • 複製到的/home內容/home.new

    • mkdir/home.new
    • cp -a /home/* /home.new/`
  • 然後解除安裝/home

    • umount /home
    • 檢查它是否真的解除安裝了mountordf -hTa
  • 移動/home.new/home或只是到的/home.new/*內容/home/*

    • rmdir /home
    • mv /home.new /home
  • 現在你可以摧毀/dev/mapper/vg_home

    • lvremove /dev/mapper/vg_home
  • 調整大小/dev/mapper/vg_root(最好在 LiveDVD 環境或gparted的啟動媒體中執行此操作。

    • 關於這個任務有各種各樣的文章,所以我不會在這裡概述。

引用自:https://serverfault.com/questions/837660