xfer revision 1.7
1Installation is supported from several media types, including:
2	* TOS HD partitions
3	* Tape
4
5No matter what you do, however, you'll need to have three disks handy,
6on which you will put the install and boot floppy images.
7
8All the images are available from the directory "atari/floppies",
9under the root of the NetBSD tree at your favorite archive site.
10
11If you are using NetBSD/atari to make the floppies, you should use
12the command dd(1) to write the raw floppy images (.fs files) to
13the disk. As an example, to write the first part of the miniroot filesystem
14onto a 720Kb floppy in fd0 use:
15
16	dd if=miniroot-_SVER_S.fs.1 of=/dev/rfd0b bs=9b
17
18If you are using TOS to make the floppies, grab the 'rawwrite' utility
19from the "atari/utils" directory and issue the command:
20	rawwrite miniroot-_SVER_S.fs
21
22This will create the boot-floppy on the floppy in drive a. The floppies
23should be pre-formatted on 720Kb/1.44Mb for both the 'dd' and 'rawwrite'
24commands to work. Pre-formatting can be best done using the desktop format
25command.  Some other utilities seem to be giving problems.
26
27Since the 1.3 release, it is also possible to use HD-floppies. You should
28than use the floppy device '/dev/rfd0c' or add the '-H' flag to 'rawwrite'.
29
30
31The steps necessary to prepare the distribution sets
32for installation depend on which method of installation
33you choose.  The various methods are explained below.
34
35To prepare for installing via an GEMDOS partition:
36
37	To install NetBSD from an GEMDOS partition, you need to
38	get the NetBSD distribution sets you wish to install
39	on your system on to an GEMDOS partition.  Rename the
40	sets from xxx.tar.gz to xxx.tgz. 
41
42	Note where you placed the files, you will need this later.
43
44	Once you have done this, you can proceed to the next
45	step in the installation process, preparing your hard disk.
46
47To prepare for installing via a tape:
48
49	To install NetBSD from a tape, you need to somehow
50	get the NetBSD filesets you wish to install on
51	your system on to the appropriate kind of tape. If you make
52	the tape on a UN*X-like system, you can create it as follows:
53
54		cd .../NetBSD-1.2/atari/binary
55		T=<tape_device>
56		mt -f $T rewind
57		for f in base etc comp games man misc text
58			dd if=$f.tar.gz of=$T conv=sync bs=5k
59		done
60		mt -f $T rewind
61
62	where "<tape_device>" is the name of the (non-rewinding!) tape
63	device that you're using (probably something like /dev/nrst0,
64	but we make no guarantees 8-).
65	If you can't figure it out, ask your system administrator.
66
67	Once you have done this, you can proceed to the next
68	step in the installation process, preparing your hard disk.
69