Thank you very much for the quick reply!
It could have been in the release notes.. I did not find it. I searched for force and memory, etc...
And I searched the forums, but the joys of searching..
Thank you again, I am going to give it a try now...
Now, that I have my FC4 LVM issues worked out... Wow, have they done a bad job of ensuring all of the modules are installed for everything.
So, for everyone doing LVM snapshots who are using FC4, you need the dm-snapshot module loaded. I put this in the LVM section of /etc/rc.d/rc.sysinit. It seems to be working now...
Code: Select all
# LVM2 initialization
if [ -x /sbin/lvm.static ]; then
if ! LC_ALL=C fgrep -q "device-mapper" /proc/devices 2>/dev/null ; then
modprobe dm-mod >/dev/null 2>&1
modprobe dm-snapshot >/dev/null 2>&1
fi
echo "mkdmnod" | /sbin/nash --quiet >/dev/null 2>&1
[ -n "$SELINUX" ] && restorecon /dev/mapper/control >/dev/null 2>&1
if [ -c /dev/mapper/control -a -x /sbin/lvm.static ]; then
if /sbin/lvm.static vgscan --mknodes --ignorelockingfailure > /dev/null
2>&1 ; then
action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y --ignorelockingfailure
fi
fi
fi
Jeremy