|
||||||
| Forums FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| ARCHIVES - 64-bit Questions specific to 64-bit systems running SUSE Linux
(Questions that apply to both 32-bit and 64-bit systems should be posted in the appropriate mixed architecture forums) |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi all, this is my /etc/fstab :
---------------- /dev/hda1 / reiserfs acl,user_xattr 1 1 /dev/hda2 /var/lib/share reiserfs acl,user_xattr 1 2 /dev/md0 /var/lib reiserfs acl,user_xattr 1 2 /dev/hda3 swap swap defaults 0 0 proc /proc proc defaults 0 0 sysfs /sys sysfs noauto 0 0 debugfs /sys/kernel/debug debugfs noauto 0 0 usbfs /proc/bus/usb usbfs noauto 0 0 devpts /dev/pts devpts mode=0620,gid=5 0 0 -------------------------- i'm wondering why my /dev/hda2 it's not mounted on boot.. "df" on console show this : ------------- host:/var/lib # df Filesystem 1K-blocks Used Available Use% Mounted on /dev/hda1 102395140 5098644 97296496 5% / udev 478068 152 477916 1% /dev /dev/md0 468850452 2486008 466364444 1% /var/lib ----------------------- Anywhere i can able to automount it when boot?? I'm using opensuse 10.2 64bit and running Xen kernel oftenly. Thanks & regards, Max. |
|
|||
|
What happens when you do this at a console after booting?
mount /dev/hda2 Report any errors you get. |
|
|||
|
it mount the /dev/hda2 as what my /etc/fstab stated, no error...
Thanks. Quote:
|
|
|||
|
Move the line with /dev/hda2 one line down, below /dev/md0, so that the mount order will be correct. What is happening is that /dev/hda2 is mounted on the old /var/lib/share which is part of the / partition and then /dev/md0 is mounted on top of /var/lib,.hiding the mounted /var/lib/share.
Incidentally since /dev/md0 mounts on /var/lib, you are hiding the old /var/lib which might involve some inaccessible disk space. To fix, boot single user, mount just / and then: mv /var/lib /var/oldlib mkdir /var/lib Then reboot and you can decide what to do with /var/oldlib. |
|
|||
|
Thanks, I didn't notice the mount order.. I think the problem solve, will try to reboot later.
THanks ya.. Max. Quote:
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|