README.install:

- corrected mkso command line
	- explained what to do after install is complete
gshrc:
	- make problem report comment more explanatory
installboot1:
	- fixed up initial message
	- create the /lang/orca/utilities directory
installboot2:
	- fixed up initial message
	- create a man hierarchy in /gno-hfs
This commit is contained in:
gdr-ftp 1998-04-24 06:02:21 +00:00
parent 5533c5ed3c
commit eacedc7aca
4 changed files with 38 additions and 13 deletions

View File

@ -1,4 +1,4 @@
$Id: README.install,v 1.1 1998/04/22 04:57:31 gdr-ftp Exp $ $Id: README.install,v 1.2 1998/04/24 06:02:17 gdr-ftp Exp $
The install scripts assumes that your _new_ distribution will be installed The install scripts assumes that your _new_ distribution will be installed
on to the two volumes /gno (ProDOS) and /gno-hfs (HFS). It also assumes on to the two volumes /gno (ProDOS) and /gno-hfs (HFS). It also assumes
@ -42,5 +42,12 @@ You should now do the following steps:
commands: commands:
cd /gno/usr/man cd /gno/usr/man
mkso -v -H /gno-hfs mkso.data mkso -v -H /gno-hfs/man mkso.data
6. You should now return to your program launcher (the Finder,
ProSEL-16, or whatever you used to start /gno.boot/kern) by
typing "exit" at the prompt. To startup up your new version
of GNO, you should then launch /gno/kern. You will then see
a "login:" prompt. Enter "root" as the user name; you will
not yet need a password.

View File

@ -2,7 +2,7 @@
# #
# GNO 2.0.6 gshrc file (for the bootstrap disk) # GNO 2.0.6 gshrc file (for the bootstrap disk)
# #
# $Id: gshrc,v 1.1 1998/04/22 04:57:32 gdr-ftp Exp $ # $Id: gshrc,v 1.2 1998/04/24 06:02:18 gdr-ftp Exp $
# #
### ###
@ -56,9 +56,10 @@ echo "====================================================================="
echo "= GNO v2.0.6 bootstrap disk." echo "= GNO v2.0.6 bootstrap disk."
echo "=" echo "="
echo "= Don't worry about the fact that this disk contains a v2.0.4 kernel;" echo "= Don't worry about the fact that this disk contains a v2.0.4 kernel;"
echo "= a more recent one will be installed. See PR#62 for details." echo "= a more recent one will be installed. See Problem Report #62 at"
echo "= http://www.gno.org/~gno/bugs.html for details."
echo "=" echo "="
echo '= $Id: gshrc,v 1.1 1998/04/22 04:57:32 gdr-ftp Exp $' echo '= $Id: gshrc,v 1.2 1998/04/24 06:02:18 gdr-ftp Exp $'
echo "=====================================================================" echo "====================================================================="
echo " " echo " "
echo " " echo " "

View File

@ -1,7 +1,7 @@
# #
# installboot1 # installboot1
# #
# $Id: installboot1,v 1.1 1998/04/22 04:57:35 gdr-ftp Exp $ # $Id: installboot1,v 1.2 1998/04/24 06:02:20 gdr-ftp Exp $
# #
echo "Before running this script, you should have set your DOWNLOAD_DIR" echo "Before running this script, you should have set your DOWNLOAD_DIR"
@ -11,11 +11,13 @@ echo "not set your environment variable then it will appear as /gno.01.shk"
echo "and the extraction will fail. If you see error messages, you can" echo "and the extraction will fail. If you see error messages, you can"
echo "type ^C (control-C) to stop. (Waiting 3 seconds, then starting" echo "type ^C (control-C) to stop. (Waiting 3 seconds, then starting"
echo "extraction.)" echo "extraction.)"
sleep 3
echo " " echo " "
setenv FILE "$DOWNLOAD_DIR/gno.01.shk" setenv FILE "$DOWNLOAD_DIR/gno.01.shk"
echo " $FILE"
echo " "
sleep 3
echo "Extracting $FILE ..." echo "Extracting $FILE ..."
echo " " echo " "
yankit xvf $FILE yankit xvf $FILE
@ -117,7 +119,7 @@ echo " "
echo "Creating empty directories required by GNO ..." echo "Creating empty directories required by GNO ..."
install -dV doc install -dV doc
install -dV lang/orca/languages lang/orca/shell install -dV lang/orca/languages lang/orca/shell lang/orca/utilities
install -dV lang/orca/libraries/orcacdefs install -dV lang/orca/libraries/orcacdefs
install -dV usr/games usr/guest/operator install -dV usr/games usr/guest/operator
install -dV usr/local/bin usr/local/doc usr/local/etc install -dV usr/local/bin usr/local/doc usr/local/etc

View File

@ -1,24 +1,39 @@
# #
# installboot2 # installboot2
# #
# $Id: installboot2,v 1.1 1998/04/22 04:57:36 gdr-ftp Exp $ # $Id: installboot2,v 1.2 1998/04/24 06:02:21 gdr-ftp Exp $
# #
setenv FILE "$DOWNLOAD_DIR/gnohfs.shk"
echo "Before running this script, you should have set your DOWNLOAD_DIR" echo "Before running this script, you should have set your DOWNLOAD_DIR"
echo "environment variable. If this was done, then the following line" echo "environment variable. If this was done, then the following line"
echo "will show the full pathname of the gnohfs.shk file. If you did" echo "will show the full pathname of the gnohfs.shk file. If you did"
echo "not set your environment variable then it will appear as /gnohfs.shk" echo "not set your environment variable then it will appear as /gnohfs.shk"
echo "and the extraction will fail. (Waiting 3 seconds, then starting" echo "and the extraction will fail. (Waiting 3 seconds, then starting"
echo "extraction.)" echo "extraction.)"
sleep 3
echo " " echo " "
setenv FILE "$DOWNLOAD_DIR/gnohfs.shk"
echo " $FILE"
echo " "
sleep 3
echo "Now extracting $FILE ..." echo "Now extracting $FILE ..."
echo " " echo " "
yankit xvf $FILE yankit xvf $FILE
echo " " echo " "
echo "All done extraction." echo "All done extraction."
echo " " echo " "
echo "Creating empty HFS manual page directories (these will be needed later)."
install -dV man/man1
install -dV man/man2
install -dV man/man3
install -dV man/man4
install -dV man/man5
install -dV man/man6
install -dV man/man7
install -dV man/man8
echo " "
echo "You should now finish the installation process as is documented" echo "You should now finish the installation process as is documented"
echo "in the README.install file on the /gno.boot disk." echo "in the README.install file on the /gno.boot disk."