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