Initial import of NetBSD install2 floppy /install script
[unix-history] / etc / etc.i386 / inst2.install
CommitLineData
fbb818e5
RG
1#!/bin/sh
2# install2.fs disk 'install'
3# Simplified, interactive 386bsd installation script.
4# D.E. Silvia (dsilvia@net.com)
5#
6# Installs balance of basic 386bsd system.
7#
8
9mount -at ufs
10bin/rm /.profile
11echo -n "Verbose installation? [n] "
12read resp
13
14echo Copying to disk.
15case $resp in
16 y*)
17 tarverbose=v
18 ;;
19 *)
20 tarverbose=
21 ;;
22esac
23
24tar cfp - . | (cd / ; tar xfp${tarverbose} -)
25
26sync
27
28echo "OK. All of the base files are installed."
29echo ""
30echo "The next step: reboot from the hard disk, and follow"
31echo "more instrutctions."
32echo ""
33echo "To do this, enter 'halt' at the prompt to halt the machine."
34echo "Once the machine has halted, remove the floppy from the disk"
35echo "drive, and hit any key to reboot from the hard disk."