I got LVM2 installed on Ubuntu Lucid. I have a volume group on /dev/fluid with free space (150Gb). I need to know if LVM is installed and working properly.
How can I test that LVM is working properly?
Thanks
Edit:
I am probably looking for a way to read/write a file in a test volume.
Here's my volume group info, in case it helps:
--- 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
There are several commands you can use:
What is /dev/fluid ?
UPDATE
What you want (I think) is to mount your logical volume.
Then mount:
Okay I think I found how to do this, this is pretty much what I was looking for:
And then I copied some file on it and checked the checksum.
source: http://www.nikhef.nl/~dennisvd/lvmcrap.html
If the logical volumes are mountable and you can write files to them, it's working. You can use the commands that cstamas mentions for more info about how your volumes are set up.
Well, then just format your LV with a file system of your choice, mount it and
touch
a file on it.