mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
ddac971a82
disk, without modification. README.install: Installation instructions for the user. gshrc, initrc, namespace: For the boot disk. installboot1, installboot2: Installation scripts for the user to run.
25 lines
755 B
Plaintext
Executable File
25 lines
755 B
Plaintext
Executable File
#
|
|
# installboot2
|
|
#
|
|
# $Id: installboot2,v 1.1 1998/04/22 04:57:36 gdr-ftp Exp $
|
|
#
|
|
|
|
setenv FILE "$DOWNLOAD_DIR/gnohfs.shk"
|
|
|
|
echo "Before running this script, you should have set your DOWNLOAD_DIR"
|
|
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 "not set your environment variable then it will appear as /gnohfs.shk"
|
|
echo "and the extraction will fail. (Waiting 3 seconds, then starting"
|
|
echo "extraction.)"
|
|
sleep 3
|
|
echo " "
|
|
echo "Now extracting $FILE ..."
|
|
echo " "
|
|
yankit xvf $FILE
|
|
echo " "
|
|
echo "All done extraction."
|
|
echo " "
|
|
echo "You should now finish the installation process as is documented"
|
|
echo "in the README.install file on the /gno.boot disk."
|