启动后LVM驱动器未安装

我创build了一个名为“orcafiler1”的三个物理磁盘的LVM。 问题是,每次启动后,LVM驱动器都没有安装,我必须手动运行

vgchange -ay orcafiler1 

fstab文件包含

 UUID=b57eae64-f270-4825-9ff0-040264fb33ac / ext3 errors=remount-ro 0 0 # /home was on /dev/sdb1 during installation UUID=c2d5decb-0615-48bd-9f8f-40eba852329e /home ext3 defaults 0 0 # swap was on /dev/sda1 during installation UUID=54582723-d970-46f4-a24d-9c6d25ca16c6 none swap sw 0 0 /dev/orcafiler1/orcavolume /data ext3 defaults,nobootwait 0 0 

我怎么能把它在启动时?

Te OS是Ubuntu 12.04

UPDATE

附加信息

 $ dmesg|grep -iE "mapper|lvm" [ 3.711927] device-mapper: uevent: version 1.0.3 [ 3.712064] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: [email protected] 

/etc/lvm/lvm.conf的输出是http://pastebin.mozilla.org/2873320

尝试将根据此模板的自动激活添加到/etc/lvm/lvm.conf。 这可能有帮助。 我不能清楚地说明是什么原因,设备在检查或启动过程中不可用lvm激活在启动过程中不启用(ehm,ubuntu,不知道它是如何完成的,我是redhat的人)。

 # If auto_activation_volume_list is defined, each LV that is to be # activated is checked against the list while using the autoactivation # option (--activate ay/-a ay), and if it matches, it is activated. # "vgname" and "vgname/lvname" are matched exactly. # "@tag" matches any tag set in the LV or VG. # "@*" matches if any tag defined on the host is also set in the LV or VG # # auto_activation_volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ]