Can anyone explain...
Why /dev/sda1 (/data (RAID)) and /dev/hda3 (/home) don't get mounted at boot?
Should /dev/hda5 (swap) and /dev/hda4 (I've no idea, but it does exist) be mounted?
/etc/fstab content below. The /dev/sda1 mounts manually with what I expect is the equivalent of the fstab line. As does /dev/hda3 but before I mount it there is already a /home dir with and empty dir for the user created during installation. Could this be stopping /dev/hda3 from mounting at boot?
Thanks for you time and thoughts
Ann
Using fedora core 4
Code:
[root@galaxy /]# more /etc/fstab
# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
/dev/devpts /dev/pts devpts gid=5,mode=620 0 0
/dev/shm /dev/shm tmpfs defaults 0 0
/dev/proc /proc proc defaults 0 0
/dev/sys /sys sysfs defaults 0 0
LABEL=SWAP-hda5 swap swap defaults 0 0
/dev/sda1 /data ext3 defaults 0 0
/dev/hda3 /home ext3 defaluts 0 0
/dev/hdc /media/cdrecorder auto pamconsole,exec,noauto,managed 0 0
[root@galaxy /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hda2 20G 5.4G 14G 29% /
/dev/hda1 99M 13M 82M 14% /boot
/dev/shm 1013M 0 1013M 0% /dev/shm
[root@galaxy ~]# mount /dev/sda1 /data
[root@galaxy ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hda2 20G 5.4G 14G 29% /
/dev/hda1 99M 13M 82M 14% /boot
/dev/shm 1013M 0 1013M 0% /dev/shm
/dev/sda1 691G 563G 93G 86% /data
[root@galaxy ~]# ls /home/
john
[root@galaxy ~]# mount /dev/hda3 /home
[root@galaxy ~]# ls /home/
<snip> list of ~20 users on /dev/hda3