home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / init.d / umountfs < prev    next >
Text File  |  1998-06-21  |  394b  |  23 lines

  1. #! /bin/sh
  2. #
  3. # umountfs    Turn off  swap and unmount all file systems.
  4. #
  5. # Version:      @(#)umountfs  2.73  26-Nov-1997  miquels@cistron.nl
  6. #
  7.  
  8. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  9.  
  10. # Write a reboot record to /var/log/wtmp before unmounting
  11. halt -w
  12.  
  13. echo -n "Deactivating swap... "
  14. swapoff -a
  15. echo "done."
  16.  
  17. echo -n "Unmounting file systems... "
  18. umount -a -r
  19. echo "done."
  20.  
  21. mount -n -o remount,ro /
  22.  
  23.