Home | History | Annotate | Line # | Download | only in amiga
xfer revision 1.6.2.3
      1      1.1  chopps Installation is supported from several media types, including:
      2      1.1  chopps 	AmigaDOS HD partitions
      3      1.1  chopps 	Tape
      4      1.1  chopps 	NFS partitions
      5      1.1  chopps 	FTP
      6      1.3  chopps 	NetBSD partitions, if doing an upgrade.
      7      1.1  chopps 
      8  1.6.2.1  mellon The miniroot file system needs to be transferred to the NetBSD swap
      9  1.6.2.1  mellon partition.  This can be done from AmigaDOS in the case of a new
     10  1.6.2.1  mellon install or upgrade, or from NetBSD when doing an upgrade.  See the
     11  1.6.2.1  mellon "Preparing your System for NetBSD Installation" section for details.
     12      1.1  chopps 
     13      1.1  chopps The steps necessary to prepare the distribution sets
     14      1.1  chopps for installation depend on which method of installation
     15      1.1  chopps you choose.  The various methods are explained below.
     16      1.1  chopps 
     17      1.1  chopps To prepare for installing via an AmigaDOS partition:
     18      1.1  chopps 
     19      1.1  chopps 	To install NetBSD from an AmigaDOS partition, you need to
     20      1.1  chopps 	get the NetBSD distribution sets you wish to install
     21      1.2  chopps 	on your system on to an AmigaDOS partition.  All of the
     22      1.2  chopps 	set_name.xx pieces can be placed in a single directory
     23      1.2  chopps 	instead of separate ones for each distribution set.  This
     24      1.2  chopps 	will also simplify the installation work later on.
     25      1.1  chopps 
     26      1.1  chopps 	Note where you place the files you will need this later.
     27      1.1  chopps 
     28      1.1  chopps 	Once you have done this, you can proceed to the next
     29      1.1  chopps 	step in the installation process, preparing your hard disk.
     30      1.1  chopps 
     31      1.1  chopps To prepare for installing via a tape:
     32      1.1  chopps 
     33      1.2  chopps 	To install NetBSD from a tape, you need to somehow
     34      1.5  chopps 	get the NetBSD file sets you wish to install on
     35  1.6.2.3  mellon 	your system on to the appropriate kind of tape.
     36      1.1  chopps 
     37      1.1  chopps 	If you're making the tape on a UN*X system, the easiest
     38      1.1  chopps 	way to do so is:
     39      1.1  chopps 
     40  1.6.2.3  mellon 		dd if=<first file> of=<tape device>
     41  1.6.2.3  mellon 		dd if=<2nd file> of=<tape device>
     42  1.6.2.3  mellon 		...
     43      1.1  chopps 
     44  1.6.2.3  mellon 	where "<tape_device>" is the name of the non-rewinding tape
     45  1.6.2.3  mellon 	device that describes the tape drive you're using (possibly
     46      1.1  chopps 	something like /dev/nrst0, but we make no guarantees 8-).
     47      1.1  chopps 	If you can't figure it out, ask your system administrator.
     48  1.6.2.3  mellon 	"<files>" are the names of the "set_name.tgz" files
     49      1.1  chopps 	which you want to be placed on the tape.
     50  1.6.2.3  mellon 
     51  1.6.2.3  mellon 	If you have a slow cpu (e.g. 68030 @ 25 MHz) on the target
     52  1.6.2.3  mellon 	machine, but big tapes, you might want to store the
     53  1.6.2.3  mellon 	uncompressed installation sets instead.  This will help tape
     54  1.6.2.3  mellon 	streaming when doing the actual installation. E.g, do:
     55  1.6.2.3  mellon 
     56  1.6.2.3  mellon 		gzip -d -c <first file> | dd of=<tape device>
     57  1.6.2.3  mellon 		gzip -d -c <2nd file> | dd of=<tape device>
     58  1.6.2.3  mellon 		...
     59      1.1  chopps 
     60      1.1  chopps 	Once you have done this, you can proceed to the next
     61      1.1  chopps 	step in the installation process, preparing your hard disk.
     62      1.1  chopps 
     63      1.1  chopps To prepare for installing via an NFS partition:
     64      1.1  chopps 
     65      1.1  chopps 	NOTE: this method of installation is recommended
     66      1.1  chopps 	      only for those already familiar with using
     67      1.1  chopps 	      the BSD network-manipulation commands and
     68      1.1  chopps 	      interfaces.  If you aren't, this documentation
     69      1.1  chopps 	      should help, but is not intended to be
     70      1.1  chopps 	      all-encompassing.
     71      1.1  chopps 
     72      1.1  chopps 	Place the NetBSD software you wish to install into
     73      1.1  chopps 	a directory on an NFS server, and make that directory
     74      1.1  chopps 	mountable by the machine which you will be installing
     75      1.1  chopps 	NetBSD on.  This will probably require modifying the
     76      1.1  chopps 	/etc/exports file of the NFS server and resetting
     77      1.1  chopps 	mountd, acts which will require superuser privileges.
     78      1.1  chopps 	Note the numeric IP address of the NFS server and of
     79      1.1  chopps 	the router closest to the the new NetBSD machine,
     80      1.1  chopps 	if the NFS server is not on a network which is
     81      1.1  chopps 	directly attached to the NetBSD machine.
     82      1.1  chopps 
     83      1.1  chopps 	Once you have done this, you can proceed to the next
     84      1.1  chopps 	step in the installation process, preparing your hard disk.
     85      1.1  chopps 
     86      1.1  chopps To prepare for installing via FTP:
     87      1.1  chopps 
     88      1.1  chopps 	NOTE: this method of installation is recommended
     89      1.1  chopps 	      only for those already familiar with using
     90      1.1  chopps 	      the BSD network-manipulation commands and
     91      1.1  chopps 	      interfaces.  If you aren't, this documentation
     92      1.1  chopps 	      should help, but is not intended to be
     93      1.1  chopps 	      all-encompassing.
     94      1.1  chopps 
     95      1.1  chopps 	The preparations for this method of installation
     96      1.1  chopps 	are easy: all you have to do is make sure that
     97      1.1  chopps 	there's some FTP site from which you can retrieve
     98      1.1  chopps 	the NetBSD installation when it's time to do
     99      1.1  chopps 	the install.  You should know the numeric IP
    100      1.1  chopps 	address of that site, the numeric IP address of
    101      1.1  chopps 	your nearest router if one is necessary
    102      1.1  chopps 
    103      1.1  chopps 	Once you have done this, you can proceed to the next
    104      1.1  chopps 	step in the installation process, preparing your hard disk.
    105      1.3  chopps 
    106      1.3  chopps If you are upgrading NetBSD, you also have the option of installing
    107      1.3  chopps NetBSD by putting the new distribution sets somewhere in your existing
    108      1.3  chopps file system, and using them from there.  To do that, you must do the
    109      1.3  chopps following:
    110      1.3  chopps 
    111      1.3  chopps 	Place the distribution sets you wish to upgrade somewhere in
    112      1.3  chopps 	your current file system tree.  At a bare minimum, you must
    113      1.3  chopps 	upgrade the "base" binary distribution, and so must put the
    114  1.6.2.2   veego 	"base" set somewhere in your file system.  If you wish,
    115      1.3  chopps 	you can do the other sets, as well, but you should NOT upgrade
    116      1.3  chopps 	the "etc" distribution; the "etc" distribution contains system
    117      1.3  chopps 	configuration files that you should review and update by hand.
    118      1.3  chopps 
    119      1.3  chopps 	Once you have done this, you can proceed to the next step in
    120      1.3  chopps 	the upgrade process, actually upgrading your system.
    121