I got it to mount, but when I rebooted, I don't see the disks any more in /dev, fdisk -l, or dmesg.
I added the following to fstab:
[root@lnx3 syba]#
[root@lnx3 etc]# more fstab
# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/ / ext3 defaults 1 1
LABEL=/boot1 /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /dev/shm tmpfs defaults 0 0
LABEL=/home /home ext3 defaults 1 2
LABEL=/opt /opt ext3 defaults 1 2
none /proc proc defaults 0 0
none /sys sysfs defaults 0 0
LABEL=/tmp /tmp ext3 defaults 1 2
LABEL=/usr1 /usr ext3 defaults 1 2
LABEL=/usr/local /usr/local ext3 defaults 1 2
LABEL=/var /var ext3 defaults 1 2
LABEL=SWAP-sda10 swap swap defaults 0 0
LABEL=/mnt/vol1 /mnt/vol1 ext2 defaults 0 0
/dev/scd0 /media/cdrecorder auto pamconsole,fscontext=system_u
bject_r:removable_t,exec,noauto,managed 0 0
/dev/fd0 /media/floppy auto pamconsole,fscontext=system_u
bject_r:removable_t,exec,noauto,managed 0 0
When I reboot linux, I see a quick message saying the /mnt/vol1 does not exist (really quick- not sure how to pause it).
Before rebooting, when I did fdisk -l, I see a message saying not a valid parition table see below:
Disk /dev/sdb: 250.0 GB, 250058268160 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488395055 sectors
Units = sectors of 1 * 512 = 512 bytes
Disk /dev/sdb doesn't contain a valid partition table
Disk /dev/sdc: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Disk /dev/sdc doesn't contain a valid partition table.
[root@lnx3 syba]#
Also, can you verify if I enter the two lines correctly at the right place (/etc/rc.d/rc.sysinit):
if [ -x /sbin/redhat-support-check -a -f /var/lib/supportinfo ]; then
/sbin/redhat-support-check || {
echo $"Normal startup will continue in 10 seconds."
sleep 10
}
fi
# Let rhgb know that we're leaving rc.sysinit
if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then
/usr/bin/rhgb-client --sysinit
fi
insmod scsi_mod
insmod sii3132
[root@lnx3 rc.d]#
Any help is appreciated.
Tony