Home | History | Annotate | Line # | Download | only in pmax
prep revision 1.7
      1  1.7     perry 	$NetBSD: prep,v 1.7 1998/01/09 18:47:14 perry Exp $	
      2  1.7     perry 
      3  1.5  jonathan Installing NetBSD/pmax using the sysinst tool and an image of a full
      4  1.5  jonathan bootable root filesystem is now a relatively painless process.  The
      5  1.5  jonathan diskimage is avaiable via (either a diskimage, dd'able to a raw disk
      6  1.5  jonathan or tarfile to for NFS .
      7  1.5  jonathan 
      8  1.5  jonathan From most convenient to least convenient, the installation methods
      9  1.5  jonathan are:
     10  1.3  jonathan 
     11  1.3  jonathan 	1. Booting as a diskless workstation via Ethernet,
     12  1.3  jonathan 	   followed by initialization of the local disk and
     13  1.3  jonathan 	   installing onto the local disk over NFS.
     14  1.3  jonathan 
     15  1.3  jonathan 	2. Copying a bootable diskimage onto the beginning of a disk
     16  1.3  jonathan 	   and installing onto that disk 
     17  1.4    mhitch 
     18  1.3  jonathan 	3. installation using a helper machine to set up a bootable
     19  1.3  jonathan 	   NetBSD/pmax  root filesystem, and moving the disk
     20  1.3  jonathan 	   to the target.
     21  1.3  jonathan 
     22  1.5  jonathan 	4. Installation from Ultrix or other OSes by putting a copy
     23  1.5  jonathan  	   of the diskimage into the existing swap partition and a copy
     24  1.5  jonathan 	   of the NetBSD kernel into your Ultrix root filesystem.
     25  1.5  jonathan 
     26  1.5  jonathan 
     27  1.5  jonathan 
     28  1.3  jonathan Before you start, you must choose an installation method.  If you have
     29  1.3  jonathan an Ethernet connection to an NFS server that can provide even ~30M for
     30  1.5  jonathan a diskless-root filesystem, then installation via the net is best.
     31  1.3  jonathan Next best, if your DECstation is already running Ultrix and has two
     32  1.3  jonathan disk drives (or one, if you live dangerously), is to copy a diskimage
     33  1.3  jonathan onto one drive.  Finally, you can install by using a second machine as
     34  1.3  jonathan a helper to prepare a bootable NetBSD/pmax disk.
     35  1.3  jonathan 
     36  1.5  jonathan If your target is going to run diskless, then installation proceeds as
     37  1.5  jonathan for method 1.
     38  1.3  jonathan 
     39  1.5  jonathan This release of NetBSD/pmax uses the new sysinst installation utility.
     40  1.3  jonathan You should examine the guide on the NetBSD/pmax web site, which has
     41  1.5  jonathan more complete and more up-to-date instructions for sysinst.  The
     42  1.5  jonathan following is a brief synopsis which has been successfully followed by
     43  1.5  jonathan both first-time NetBSD/pmax installers and to upgrade existing
     44  1.5  jonathan gsystems.
     45  1.3  jonathan 
     46  1.3  jonathan You should familiarize yourself with the console PROM environment
     47  1.3  jonathan and the hardware configuration. The PROMs on the older Decstation
     48  1.6  jonathan 2100 and 3100 use one syntax. The PROMs on the TurboChannel machines
     49  1.3  jonathan use a completely different syntax.  Be sure you know how to print
     50  1.6  jonathan the configuration of your machine, and how to boot from disk or
     51  1.3  jonathan network, as appropriate.
     52  1.3  jonathan 
     53  1.3  jonathan On the 2100/3100, that's
     54  1.3  jonathan 	boot -f rz(0,N,0)netbsd		(boot from rzN)
     55  1.3  jonathan 	boot -f tftp()			(boot diskless via TFTP)
     56  1.3  jonathan 	boot -f tftp()			(boot via MOP from an Ultrix server)
     57  1.3  jonathan 
     58  1.3  jonathan On the 5000/200, the equivalent is
     59  1.3  jonathan 	boot 5/rzN/netbsd
     60  1.3  jonathan 	boot 6/tftp
     61  1.3  jonathan 	boot 6/mop
     62  1.3  jonathan 
     63  1.3  jonathan and on other  5000 series machines,
     64  1.3  jonathan 	boot 3/rzN/netbsd
     65  1.3  jonathan 	boot 3/tftp
     66  1.3  jonathan 	boot 3/mop
     67  1.3  jonathan 
     68  1.3  jonathan You will also need to know the total size (in sectors) and the
     69  1.5  jonathan approximate geometry of the disks you are installing onto, so that you
     70  1.5  jonathan can label your disks for the BSD fast filesystem (FFS).  For most SCSI
     71  1.5  jonathan drives (including all SCSI-2 drives), the kernel will correctly detect
     72  1.5  jonathan the disk geometry. The sysinst tool will suggest these as the default.
     73  1.3  jonathan 
     74  1.3  jonathan 
     75  1.3  jonathan If you're installing NetBSD/pmax for the first time it's a very good
     76  1.3  jonathan idea to pre-plan partition sizes for the disks on which you're
     77  1.3  jonathan installing NetBSD.  Changing the size of partitions after you've
     78  1.3  jonathan installed is difficult.  If you do not have a spare bootable disk, it
     79  1.3  jonathan may be simpler to re-install NetBSD again from scratch.
     80  1.3  jonathan 
     81  1.5  jonathan 
     82  1.3  jonathan If you install by copying a disk image, and you want to change the size
     83  1.3  jonathan of the root partition from the default 32Mbytes, you will need a second
     84  1.3  jonathan `scratch' disk. You should copy the diskimage onto the `scratch' disk,
     85  1.3  jonathan boot the scratch disk, and use it to create a tailored root filesystem.
     86  1.3  jonathan This is because you cannot change the size of an active partition (i.e.,
     87  1.3  jonathan the root filesysem you booted). The standard trick to get around this is
     88  1.3  jonathan to put a cut-down miniroot into the swap partition, boot the miniroot,
     89  1.3  jonathan and use that system to change the root filesystem size.  DECstation
     90  1.3  jonathan PROMs don't reliably support booting off partitions other than the 'a'
     91  1.3  jonathan partition, which is why you need two disks to tailor the root filesystem
     92  1.3  jonathan size.
     93  1.3  jonathan 
     94  1.3  jonathan Assuming a classic partition scheme with separate root (`/') and /usr
     95  1.5  jonathan filesystems, a comfortable size for the NetBSD root filesystem
     96  1.5  jonathan partition is about 32M.  A good initial size for the swap partition is
     97  1.5  jonathan twice the amount of physical memory in your machine (though, unlike
     98  1.5  jonathan Ultrix, there are no restrictions on the size of the swap partition
     99  1.5  jonathan that would render part of your memory unusable).  The default swap
    100  1.5  jonathan size is 64Mbytes, which is adequate for doing a full system build.  A
    101  1.5  jonathan full binary installation, with X11R6.3, takes about 150MB in `/usr'.
    102