Home | History | Annotate | Line # | Download | only in amiga
xfer revision 1.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.3  chopps >>> Transfering install/upgrade file system image to swap partition
      9  1.1  chopps No matter what you do, however, you'll need to have one disk handy,
     10  1.1  chopps on which you will put the install floppy image.
     11  1.1  chopps 
     12  1.1  chopps All the images are available from the directory "amiga/floppies",
     13  1.3  chopps >>>                                                    ^^^^^^^^
     14  1.1  chopps under the root of the NetBSD tree at your favorite archive site.
     15  1.1  chopps 
     16  1.1  chopps If you are using NetBSD/amiga to make the floppies, you should use
     17  1.1  chopps the command dd(1) to write the raw floppy images (.fs files) to
     18  1.1  chopps the disk. To write onto fd0 use:
     19  1.1  chopps 
     20  1.3  chopps 	dd if=inst-11.fs of=/dev/rfd0a bs=11b
     21  1.1  chopps 
     22  1.1  chopps If you are using AmigaDOS to make the floppies, you should
     23  1.1  chopps use the rawwrite utility, provided in the directory
     24  1.1  chopps "amiga/utilities" in the distribution.  To write the image to
     25  1.1  chopps the floppy in df0 use (from cli):
     26  1.1  chopps 
     27  1.3  chopps 	rawwrite 0 inst-11.fs
     28  1.3  chopps >>> fix above to document file system transfer to swap paritition
     29  1.3  chopps >>> using xstreamtodev
     30  1.1  chopps 
     31  1.1  chopps The steps necessary to prepare the distribution sets
     32  1.1  chopps for installation depend on which method of installation
     33  1.1  chopps you choose.  The various methods are explained below.
     34  1.1  chopps 
     35  1.1  chopps To prepare for installing via an AmigaDOS partition:
     36  1.1  chopps 
     37  1.1  chopps 	To install NetBSD from an AmigaDOS partition, you need to
     38  1.1  chopps 	get the NetBSD distribution sets you wish to install
     39  1.2  chopps 	on your system on to an AmigaDOS partition.  All of the
     40  1.2  chopps 	set_name.xx pieces can be placed in a single directory
     41  1.2  chopps 	instead of separate ones for each distribution set.  This
     42  1.2  chopps 	will also simplify the installation work later on.
     43  1.1  chopps 
     44  1.1  chopps 	Note where you place the files you will need this later.
     45  1.1  chopps 
     46  1.1  chopps 	Once you have done this, you can proceed to the next
     47  1.1  chopps 	step in the installation process, preparing your hard disk.
     48  1.1  chopps 
     49  1.1  chopps To prepare for installing via a tape:
     50  1.1  chopps 
     51  1.2  chopps 	To install NetBSD from a tape, you need to somehow
     52  1.2  chopps 	get the NetBSD filesets you wish to install on
     53  1.1  chopps 	your system on to the appropriate kind of tape,
     54  1.1  chopps 	in tar format.
     55  1.1  chopps 
     56  1.1  chopps 	If you're making the tape on a UN*X system, the easiest
     57  1.1  chopps 	way to do so is:
     58  1.1  chopps 
     59  1.1  chopps 		tar cvf <tape_device> <files>
     60  1.1  chopps 
     61  1.1  chopps 	where "<tape_device>" is the name of the tape device
     62  1.1  chopps 	that describes the tape drive you're using (possibly
     63  1.1  chopps 	something like /dev/nrst0, but we make no guarantees 8-).
     64  1.1  chopps 	If you can't figure it out, ask your system administrator.
     65  1.1  chopps 	"<files>" are the names of the "set_name.nnn" files
     66  1.1  chopps 	which you want to be placed on the tape.
     67  1.1  chopps 
     68  1.1  chopps 	Once you have done this, you can proceed to the next
     69  1.1  chopps 	step in the installation process, preparing your hard disk.
     70  1.1  chopps 
     71  1.1  chopps To prepare for installing via an NFS partition:
     72  1.1  chopps 
     73  1.1  chopps 	NOTE: this method of installation is recommended
     74  1.1  chopps 	      only for those already familiar with using
     75  1.1  chopps 	      the BSD network-manipulation commands and
     76  1.1  chopps 	      interfaces.  If you aren't, this documentation
     77  1.1  chopps 	      should help, but is not intended to be
     78  1.1  chopps 	      all-encompassing.
     79  1.1  chopps 
     80  1.1  chopps 	Place the NetBSD software you wish to install into
     81  1.1  chopps 	a directory on an NFS server, and make that directory
     82  1.1  chopps 	mountable by the machine which you will be installing
     83  1.1  chopps 	NetBSD on.  This will probably require modifying the
     84  1.1  chopps 	/etc/exports file of the NFS server and resetting
     85  1.1  chopps 	mountd, acts which will require superuser privileges.
     86  1.1  chopps 	Note the numeric IP address of the NFS server and of
     87  1.1  chopps 	the router closest to the the new NetBSD machine,
     88  1.1  chopps 	if the NFS server is not on a network which is
     89  1.1  chopps 	directly attached to the NetBSD machine.
     90  1.1  chopps 
     91  1.1  chopps 	Once you have done this, you can proceed to the next
     92  1.1  chopps 	step in the installation process, preparing your hard disk.
     93  1.1  chopps 
     94  1.1  chopps To prepare for installing via FTP:
     95  1.1  chopps 
     96  1.1  chopps 	NOTE: this method of installation is recommended
     97  1.1  chopps 	      only for those already familiar with using
     98  1.1  chopps 	      the BSD network-manipulation commands and
     99  1.1  chopps 	      interfaces.  If you aren't, this documentation
    100  1.1  chopps 	      should help, but is not intended to be
    101  1.1  chopps 	      all-encompassing.
    102  1.1  chopps 
    103  1.1  chopps 	The preparations for this method of installation
    104  1.1  chopps 	are easy: all you have to do is make sure that
    105  1.1  chopps 	there's some FTP site from which you can retrieve
    106  1.1  chopps 	the NetBSD installation when it's time to do
    107  1.1  chopps 	the install.  You should know the numeric IP
    108  1.1  chopps 	address of that site, the numeric IP address of
    109  1.1  chopps 	your nearest router if one is necessary
    110  1.1  chopps 
    111  1.1  chopps 	Once you have done this, you can proceed to the next
    112  1.1  chopps 	step in the installation process, preparing your hard disk.
    113  1.3  chopps 
    114  1.3  chopps If you are upgrading NetBSD, you also have the option of installing
    115  1.3  chopps NetBSD by putting the new distribution sets somewhere in your existing
    116  1.3  chopps file system, and using them from there.  To do that, you must do the
    117  1.3  chopps following:
    118  1.3  chopps 
    119  1.3  chopps 	Place the distribution sets you wish to upgrade somewhere in
    120  1.3  chopps 	your current file system tree.  At a bare minimum, you must
    121  1.3  chopps 	upgrade the "base" binary distribution, and so must put the
    122  1.3  chopps 	"base11" set somewhere in your file system.  If you wish,
    123  1.3  chopps 	you can do the other sets, as well, but you should NOT upgrade
    124  1.3  chopps 	the "etc" distribution; the "etc" distribution contains system
    125  1.3  chopps 	configuration files that you should review and update by hand.
    126  1.3  chopps 
    127  1.3  chopps 	Once you have done this, you can proceed to the next step in
    128  1.3  chopps 	the upgrade process, actually upgrading your system.
    129