Ubuntu
如何測試 LVM 是否適用於 Ubuntu Lucid?
我在 Ubuntu Lucid 上安裝了 LVM2。我在 /dev/fluid 上有一個可用空間 (150Gb) 的捲組。我需要知道 LVM 是否已安裝並正常工作。
如何測試 LVM 是否正常工作?
謝謝
編輯:
我可能正在尋找一種在測試卷中讀/寫文件的方法。
這是我的捲組資訊,以防萬一:
--- Volume group --- VG Name fluid System ID Format lvm2 Metadata Areas 2 Metadata Sequence No 9 VG Access read/write VG Status resizable MAX LV 0 Cur LV 1 Open LV 0 Max PV 0 Cur PV 2 Act PV 2 VG Size 151,09 GiB PE Size 4,00 MiB Total PE 38679 Alloc PE / Size 4864 / 19,00 GiB Free PE / Size 33815 / 132,09 GiB
好的,我想我找到瞭如何做到這一點,這幾乎就是我想要的:
sudo lvcreate -L50M -n test fluid sudo mkfs.ext3 /dev/fluid/test sudo mkdir /media/test sudo mount /dev/fluid/test /media/test/
然後我在上面複製了一些文件並檢查了校驗和。
您可以使用幾個命令:
pvs - lists physical volumes vgs - this lists the volume groups lvs - lists logical volumes
什麼是 /dev/fluid ?
更新
你想要的(我認為)是掛載你的邏輯卷。
ls /dev/mapper
然後掛載:
mount /dev/mapper/fluid-{something-you-found-above} /mnt