On Wed, Dec 22, 2004 at 10:44:22PM -0600, Andrew Konosky wrote: > I have both Debian 3.1 and Fedora Core 3 on this computer, and FC3 is > using an LVM filesystem. I can mount my Debian filesystem in Fedora > because it is a simple ext2 partition, but in Debian, I am not sure > how to mount my Fedora filesystem. It is on /dev/hdb2, which is a 74gb > physical volume in /dev/VolGroup00/LogVol00. > > How can I mount this automatically through fstab?
Does your volume show up in /dev/VolGroup00/LogVol00 already? If not, you need to load the appropriate modules, which I forget what they are (lvm or lvm2 and device-mapper, maybe) Then make a mount point, mkdir /fedora, and add to /etc/fstab: /dev/hda1 /fedora ext3 defaults 0 2 or whatever filesystem you're using. mount -a should mount it, and it will mount on boot. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

