home *** CD-ROM | disk | FTP | other *** search
- #! /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 /
-
-