Why everytime i reboot my unix machine my mounted /c1 and /c0 partition are gone?
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$5 Answers
experience
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$It would be something like
/dev/c0 /c0 ext3 auto,users,ro 0 0
Check out http://forum.soft32.com/linux/mount-command-fstab-ftopict349875.html for more information
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$http://www.computing.net/answers/linux/how-to-mount-win-partitions-during-boot/8139.html
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$If a partition is not supposed to be auto-mounted by some magic background auto-mounting program, when you reboot whatever you mounted will not be mounted unless up put the appropriate mounting entries in /etc/fstab. Even if you do have the auto-mounter, it would probably not hurt to put the entries into /etc/fstab anyway.
Otherwise, you could write a script and invoke it from the SCO equivalent of /etc/init.d/boot.local (or whatever it calls the last script that is invoked during the boot sequence). The script will check if the partition is mounted, and mount it if it is not.
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$[root@roswell root]# vim /etc/fstab
and add a line with the information you are specifying in the mount command
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$
# cat /etc/default/filesys
# @(#) filesys.src 25.3 95/03/30
#
# Copyright (C) 1988-1995 The Santa Cruz Operation, Inc.
# All Rights Reserved.
# The information in this file is provided for the exclusive use of
# the licensees of The Santa Cruz Operation, Inc. Such users have the
# right to use, modify, and incorporate this code into other products
# for purposes authorized by the license agreement provided they include
# this notice and the associated copyright notice with any such product.
# The information in this file is provided "AS IS" without warranty.
#
# default/filesys - Filesystem mount table: filesys(F)
#
bdev=/dev/boot cdev=/dev/rboot \
mountdir=/stand mount=no fstyp=EAFS \
fsck=no fsckflags= rcmount=yes \
rcfsck=no mountflags=
bdev=/dev/root cdev=/dev/rroot \
mountdir=/ mount=no fstyp=HTFS \
fsck=no fsckflags= rcmount=no \
rcfsck=no mountflags=
bdev=/dev/c1 cdev=/dev/rc1 \
mountdir=/c1 mount=yes fstyp=HTFS \
fsck=dirty fsckflags=-y \
rcmount=yes rcfsck=dirty
bdev=/dev/c2 cdev=/dev/rc2 mountdir=/c2 rcmount=yes mount=yes fsckflags=-y
bdev=/dev/c3 cdev=/dev/rc3 mountdir=/c3 rcmount=yes mount=yes fsckflags=-y
Looks like someone used 'Filesystem Manager' gui to manage the filesystems. Do a cat of /etc/default/filesys and paste the output here.
To really help you out, we are going to need more info. Run these commands and paste the output into your question:
df -k
mount
uname -v
# df -k
/ (/dev/root ): 14932407 blocks 4368928 i-nodes
/stand (/dev/boot ): 10559 blocks 4992 i-nodes
# mount
/ on /dev/root read/write on Wed Dec 17 10:29:01 2008
/stand on /dev/boot read only on Wed Dec 17 10:29:01 2008
# uname -v
5.0.6
So, I need to see in mount, /c0 comming from /dev/c0 and /dev/c1 but i cant see to have it right.
Looks like you just need to add this to the end of /etc/default/filesys:
bdev=/dev/c0 cdev=/dev/rc0 mountdir=/c0 rcmount=yes mount=yes fsckflags=-y
bdev=/dev/c1 cdev=/dev/rc0 mountdir=/c1 rcmount=yes mount=yes fsckflags=-y