home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 February
/
PCWorld_2000-02_cd.bin
/
live
/
etc
/
init.d
/
umountfs
< prev
next >
Wrap
Text File
|
1998-06-21
|
394b
|
23 lines
#! /bin/sh
#
# umountfs Turn off swap and unmount all file systems.
#
# Version: @(#)umountfs 2.73 26-Nov-1997 miquels@cistron.nl
#
PATH=/sbin:/bin:/usr/sbin:/usr/bin
# Write a reboot record to /var/log/wtmp before unmounting
halt -w
echo -n "Deactivating swap... "
swapoff -a
echo "done."
echo -n "Unmounting file systems... "
umount -a -r
echo "done."
mount -n -o remount,ro /