install revision 1.17
1	$NetBSD: install,v 1.17 1998/08/23 12:42:20 hubertf Exp $	
2
3Installing NetBSD is a relatively complex process, but if you have
4this document in hand it shouldn't be too much trouble.
5
6There are several ways to install NetBSD onto a disk. The easiest way
7in terms of preliminary setup is to use the NetBSD miniroot that can
8be booted off your local disk's swap partition. Alternatively, if your
9Sparcstation is hooked up in a network you can find a server and arrange
10for a diskless setup which is a convenient way to install on a machine
11whose disk does not currently hold a usable operating system (see the
12section `Installing NetBSD by using a diskless setup' below).
13
14
15Installing NetBSD by using the NetBSD miniroot.
16
17The miniroot is a self-contained NetBSD filesystem holding all utilities
18necessary to install NetBSD on a local disk. It is distributed as a plain
19file designed to be transferred to a raw disk partition from which it can
20be booted using the appropriate PROM command. Usually, the miniroot will
21be loaded into the swap partition of a disk. If needed, you can use any
22other unused partition, but remember that the partition will then not
23available during the installation process.
24
25Loading the miniroot onto your raw partition is simple. On NetBSD as well
26as SunOS you use a command like:
27
28	# dd if=miniroot-_VER.fs of=/dev/rsd0b bs=20b conv=sync
29
30(here `/dev/rsd0b' is assumed to be your swap partition). There's a
31potential problem here if /dev/rsd0b is actually in use as a swap
32partition by your currently running system. If you don't have another
33disk or partition to spare, you can usually get away with running this
34command anyway after first booting into single-user mode to ensure a
35quiet system.
36
37After transferring the miniroot to disk, bring the system down by:
38
39	# halt
40
41Then boot the miniroot by typing the appropriate command at the PROM:
42
43	> b sd(,,1)netbsd -s			# for sun4 monitors
44	ok boot sd(,,1)netbsd -s		# for version 1 OpenBOOT ROMs
45	ok boot disk:b netbsd -s		# for version 2 OpenBOOT ROMs
46
47If you've loaded the miniroot onto some other disk than `sd0' adapt
48the boot specifier accordingly, e.g.:
49
50	ok boot disk1:b netbsd -s
51
52to boot from SCSI disk target 1 from a version 2 OpenBOOT ROM.
53If you have to use the old-style `sd(c,u,p)' syntax to boot from a
54SCSI disk, you can calculate the parameters as follows:
55
56	`c'	- specifies the controller number
57	`u'	- the hexadecimal number obtained from evaluating
58		  the expression `(8 * TARGET) + LUN'
59	`p'	- the partition number from which to boot (0=`a', 1=`b', etc).
60
61
62The monitor boot command will cause the NetBSD kernel contained in the
63miniroot image to be booted. After the initial probe messages you'll be
64asked to start the install or upgrade procedure. Proceed to the section
65`Running the installation scripts' below.
66
67
68Installing NetBSD by using a diskless setup.
69
70First, you must setup a diskless client configuration on a server. If
71you are using a NetBSD system as the boot-server, have a look at the
72diskless(8) manual page for guidelines on how to proceed with this.
73If the server runs another operating system, you'll have to consult
74documentation that came with it (on SunOS systems, add_client(8) is a
75good start).
76
77Your Sparcstation expects to be able to download a second stage bootstrap
78program via TFTP after having acquired its IP address through RevARP when
79instructed to boot "over the net". It will look for a filename composed of
80the machine's IP address followed by the machine's architecture, separated
81by a period. For example, a sun4c machine which has been assigned IP
82address 130.115.144.11, will make an TFTP request for `8273900B.SUN4C'.
83Normally, this file is a symbolic link to an appropriate second-stage
84boot program, which should be located in a place where the TFTP daemon
85can find it (remember, many TFTP daemons run in a chroot'ed environment).
86You can find the boot program in `/usr/mdec/boot.net' in the NetBSD/sparc
87distribution.
88
89[ Note that the only difference between `/usr/mdec/boot.net' and
90  `/usr/mdec/boot' is in the a.out header, which has been magically
91  transformed in a way that makes it usable on all versions of
92  Sparc PROMs.
93]
94
95
96After the boot program has been loaded into memory and given control by
97the PROM, it starts locating the machine's remote root directory through
98the BOOTPARAM protocol. First a BOOTPARAM WHOAMI request is broadcast
99on the local net. The answer to this request (if it comes in) contains
100the client's name. This name is used in next step, a BOOTPARAM GETFILE
101request -- sent to the server that responded to the WHOAMI request --
102requesting the name and address of the machine that will serve the client's
103root directory, as well as the path of the client's root on that server.
104
105Finally, this information (if it comes in) is used to issue a REMOTE MOUNT
106request to the client's root filesystem server, asking for an NFS file
107handle corresponding to the root filesystem. If successful, the boot
108program starts reading from the remote root filesystem in search of the
109kernel which is then read into memory.
110
111
112As noted above in the section `Preparing your System for NetBSD Installation',
113you have several options when choosing a location to store the installation
114filesets. However, the easiest way is to put the *.tar.gz files you want
115to install into the root directory for your client on the server.
116
117Next, unpack `base.tar.gz' and `etc.tar.gz' on the server in the root 
118directory for your machine. If you elect to use a separately NFS-mounted
119filesystem for `/usr' with your diskless setup, make sure the "./usr" base
120files in base.tar.gz end up in the correct location. One way to do this is
121to temporarily use a loopback mount on the server, re-routing <root>/usr to
122your server's exported NetBSD "/usr" directory. Also put the kernel and the
123install/upgrade scripts into the root directory.
124
125A few configuration files need to be edited:
126
127	<root>/etc/hosts
128		Add the IP addresses of both server and client.
129
130	<root>/etc/myname
131		This files contains the client's hostname; use the same
132		name as in <root>/etc/hosts.
133
134	<root>/etc/fstab
135		Enter the entries for the remotely mounted filesystems.
136		For example:
137			server:/export/root/client       /     nfs  rw 0 0
138			server:/export/exec/sun4.netbsd  /usr  nfs  rw 0 0
139
140Now you must populate the the `/dev' directory for your client. If you server
141runs SunOS 4.x, you can simply change your working directory to `<root>/dev'
142and run the MAKEDEV script: `sh MAKEDEV all'.
143
144On SunOS 5.x systems, MAKEDEV can also be used, but there'll be error
145messages about unknown user and groups. These errors are inconsequential
146for the purpose of installing NetBSD. However, you may want to correct them
147if you plan to use the diskless setup regularly. In that case, you may re-run
148MAKEDEV on your NetBSD machine once it has booted.
149
150Boot your workstation from the server by entering the appropriate `boot'
151command at the monitor prompt. Depending on the PROM version in your machine,
152this command takes one of the following forms:
153
154	> b le()netbsd -s		# for sun4 monitors
155	ok boot le()netbsd -s		# for version 1 OpenBOOT ROMs
156	ok boot net netbsd -s		# for version 2 OpenBOOT ROMs
157
158This will boot the NetBSD kernel in single-user mode.
159
160[[
161NOTE: the latter two examples assume you operate the OpenBOOT ROM in
162"new command mode". If your machine comes up and gives you a `>' prompt
163instead of `ok', type:
164
165    >n					# enter native OpenBOOT mode
166    ok setenv sunmon-compat? false	# make it permanent
167    ok
168]]
169
170If you use a diskless setup with a separately NFS-mounted /usr filesystem,
171mount /usr by hand now:
172
173netbsd# mount /usr
174
175At this point, it's worth checking the disk label and partition sizes on
176the disk you want to install NetBSD onto. NetBSD understands SunOS-style
177disklabels, so if your disk was previously used by SunOS there will be
178a usable label on it. Use `disklabel -e <disk>' (where <disk> is the
179device name assigned by the NetBSD kernel, e.g. `sd0') to view and
180modify the partition sizes. See the section `Preparing your System for
181NetBSD Installation' above for suggestions about disk partition sizes.
182
183If you are installing on a SCSI disk that does *not* have a SunOS or
184NetBSD label on it, you may still be able to use disklabel(8) but you'll
185have to create all partitions from scratch. If your disk is listed in
186`/etc/disktab', you may use the entry (which in most cases only defines
187a `c' partition to describe the whole disk) to put an initial label on
188the disk. Then proceed with `disklabel -e <disk>' to create a partition
189layout that suits your needs.
190
191NOTE: Because of the built-in compatibility with SunOS-style labels,
192ALWAYS MAKE SURE ALL YOUR PARTITIONS START AND END ON CYLINDER BOUNDARIES.
193
194
195Here follows an example of what you'll see while in the dislabel editor.
196Do not touch any of the parameters except for the `label: ' entry and
197the actual partition size information at the bottom (the lines starting
198with `a:', `b:', ...).
199
200The size and offset fields are given in sector units. Be sure to make
201these numbers multiples of the of the number of sectors per cylinder:
202the kernel might be picky about these things, but aside from this you'll
203have the least chance of wasting disk space.
204Partitions on which you intend to have a mountable filesystem, should
205be given fstype `4.2BSD'. Remember, the `c' partition should describe
206the whole disk.
207The `(Cyl. x - y)' info that appears after the hash (`#') character is
208treated as a comment and need not be filled in when altering partitions.
209
210Special note: the line containing `8 partitions:' is best left alone,
211even if you define less then eight partitions. If this line displays
212a different number and the program complains about it (after you leave
213the editor), then try setting it to `8 partitions:'.
214
215
216<BEGIN SAMPLE DISKLABEL SCREEN>
217netbsd# disklabel sd2
218 # /dev/rsd2c:
219type: SCSI 
220disk: SCSI disk
221label: Hold Your Breath
222flags:
223bytes/sector: 512
224sectors/track: 64
225tracks/cylinder: 7  
226sectors/cylinder: 448
227cylinders: 1429
228rpm: 3600
229interleave: 1
230trackskew: 0
231cylinderskew: 0
232headswitch: 0           # milliseconds
233track-to-track seek: 0  # milliseconds
234drivedata: 0
235
2368 partitions:
237#        size   offset    fstype   [fsize bsize   cpg]
238  a:    50176        0    4.2BSD        0     0     0   # (Cyl.    0 - 111)
239  b:    64512    50176      swap                        # (Cyl.  112 - 255)
240  c:   640192        0   unknown                        # (Cyl.    0 - 1428)
241  d:   525504   114688    4.2BSD        0     0     0   # (Cyl.  256 - 1428)
242<END SAMPLE DISKLABEL SCREEN>
243
244
245If you are upgrading a NetBSD installation, start the upgrade script:
246
247netbsd# sh upgrade.sh
248
249else, start the installation script:
250
251netbsd# sh install.sh
252
253
254Running the installation scripts.
255
256The installation scripts will do most of the work of transferring the
257system from the distribution sets onto your disk. You will frequently be
258asked for confirmation before the script proceeds with each phase of the
259installation process.
260
261Occasionally, you'll have to provide a piece of information such as the
262name of the disk you want to install on or IP addresses and domain names
263you want to assign. If your system has more than one disk, you may want
264to look at the output of the dmesg(8) command to see how your disks
265have been identified by the kernel.
266
267The installation script goes through the following phases:
268
269	- determination of the disk to install NetBSD on
270	- checking of the partition information on the disk
271	- creating and mounting the NetBSD filesystems
272	- setup of IP configuration
273	- extraction of the distribution tar files
274	- installation of boot programs
275
276
277Now try a reboot.  Initially I'd suggest you "boot sd()netbsd -bs", then
278try multiuser after that. If you boot single-user the NetBSD incantation
279to make the root filesystem writable is
280
281    netbsd# mount -u /dev/sd0a /
282
283The Sun monitor might have been setup to instruct the boot program to load
284a file called "vmunix". On OpenBOOT ROM systems you can change it to load
285"netbsd" instead using the following commands:
286
287On version 1 OpenBOOT ROMs:
288    >n
289    ok setenv boot-from sd(0,0,0)netbsd
290    ok
291
292On version 2 OpenBOOT ROMs:
293    ok setenv boot-file netbsd
294    ok setenv boot-device /sbus/esp/sd@0,0
295
296
297Congratulations, you have successfully installed NetBSD _VER. 
298