home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 February
/
PCWorld_2000-02_cd.bin
/
live
/
etc
/
init.d
/
mountall.sh
< prev
next >
Wrap
Text File
|
1998-12-10
|
561b
|
30 lines
#
# mountall.sh Mount all filesystems.
#
# Version: @(#)mountall.sh 2.76 10-Dec-1998 miquels@cistron.nl
#
. /etc/default/rcS
#
# Mount local file systems in /etc/fstab.
#
[ "$VERBOSE" != no ] && echo "Mounting local file systems..."
mount -avt nonfs,noproc
#
# We might have mounted something over /dev, see if /dev/initctl is there.
#
if [ ! -p /dev/initctl ]
then
rm -f /dev/initctl
mknod -m 600 /dev/initctl p
fi
kill -USR1 1
#
# Execute swapon command again, in case we want to swap to
# a file on a now mounted filesystem.
#
swapon -a 2>/dev/null