home *** CD-ROM | disk | FTP | other *** search
/ Internet News 1999 February / InternetNews_1999_02.iso / pc / Linux / Debian / root.bin / root / etc / rc < prev   
Text File  |  1998-07-20  |  583b  |  21 lines

  1. #!    /bin/sh
  2. #set -x 
  3. fstype=minix
  4. root_device=`block_device /`
  5. echo "Root is mounted from $root_device"
  6. # mount writable
  7. mount -t $fstype -n -o remount $root_device /
  8. # write new mtab
  9. echo -n > /etc/mtab
  10. mount -t $fstype -o remount $root_device /
  11. # Make sure there are no old entries in /etc/fstab to confuse the installer.
  12. echo "$root_device / $fstype rw 0 1" >/etc/fstab
  13. # already mounted by init; write mtab entry
  14. mount -o remount -t proc proc /proc
  15. update
  16. cat /proc/kmsg >/dev/tty4 &
  17. # nfsroot cleanup (persitent files between runs)
  18. rm -f /tmp/kbdconf
  19. echo "/etc/rc done."
  20. exit 0
  21.