On Fri, Jul 18, 2008 at 6:30 AM, Bipinchandra Ranpura <[EMAIL PROTECTED]> wrote: > /dev/VolGroup00/LogVol00 / ext3 defaults > 1 1 > LABEL=/boot /boot ext3 defaults > 1 2 > tmpfs /dev/shm tmpfs defaults > 0 0 > devpts /dev/pts devpts > gid=5,mode=620 0 0 > sysfs /sys sysfs > defaults 0 0 > proc /proc proc > defaults 0 0 > /dev/VolGroup00/LogVol01 swap swap defaults > 0 0 > 192.168.1.99:/usr/data /mnt/rhserver nfs rw,hard,intr > 0 0
So, one of those filesystems failed to mount. The first one is the root of the drive, the forward slash. That one mounted or you wouldn't have booted the system at all. Same with the second one "/boot". Become root and try `mount -a`. That mounts all filesystems listed in /etc/fstab. One of them will output an error. Another thing you could try is `cat /etc/mtab`. This will tell you what's actually mounted right now. If there's something listed in your /etc/fstab that's *not* in /etc/mtab, then it failed to mount. And tell us what `df` says. -todd
