contents revision 1.4
1The sun3-specific portion of the NetBSD _VER release is found in the
2"sun3" subdirectory of the distribution.  That subdirectory is laid
3out as follows:
4
5.../NetBSD-_VER/sun3/
6	INSTALL			Installation notes; this file.
7
8	installation/
9		miniroot/	sun3 miniroot image
10		netboot/	sun3 network boot support
11		tapeimage/	sun3 boot tape support
12
13	binary/
14		kernel/		sun3 kernels
15		sets/		sun3 binary distribution sets
16		security/	sun3 security distribution
17
18Detailed content description by directory:
19
20.../sun3/installation/
21
22Contains all the files needed to install NetBSD/sun3 onto a
23completely "bare" sun3 using either boot from tape or boot
24from the network.  See the section "Getting the NetBSD System
25onto Useful Media" for instructions on either method.
26
27.../sun3/installation/miniroot/
28
29	miniroot.gz	A gzipped copy of the miniroot filesystem.
30			This image is to be un-gzipped and copied
31			into the swap area of a disk.
32
33.../sun3/installation/netboot/
34
35	netboot		A copy of the network boot program.
36			This is useful if you are installing
37			a diskless NetBSD/sun3 system.
38
39.../sun3/installation/tapeboot/
40
41	MakeBootTape	A script for creating the boot tape.
42
43	MakeInstTape	A script for creating the install tape.
44
45	tapeboot	A copy of the tape boot program, used
46			as the first segment of a boot tape.
47
48.../sun3/binary/kernel/
49
50	netbsd-rd.gz	A gzipped copy of the "RAMDISK kernel"
51			for installing the miniroot filesystem.
52
53	netbsd-gen.gz	A gzipped GENERIC kernel (for upgrade)
54
55 .../sun3/binary/sets/
56
57The NetBSD/sun3 binary distribution sets contain the binaries which
58comprise the NetBSD _VER release for the sun3.  There are seven binary
59distribution sets and the "security" distribution set.  The binary
60distribution sets can be found in the "sun3/binary/sets" subdirectory
61of the NetBSD _VER distribution tree, and are as follows:
62
63
64	base	The NetBSD/sun3 _VER base binary distribution.  You
65		MUST install this distribution set.  It contains the
66		base NetBSD utilities that are necessary for the
67		system to run and be minimally functional.  It
68		includes shared library support, and excludes
69		everything described below.
70		[ 8M gzipped, 22M uncompressed ]
71
72	comp	The NetBSD/sun3 Compiler tools.  All of the tools
73		relating to C, C++, and FORTRAN (yes, there are two!).
74		This set includes the system include files
75		(/usr/include), the linker, the compiler tool chain,
76		and the various system libraries (except the shared
77		libraries, which are included as part of the base
78		set).  This set also includes the manual pages for all
79		of the utilities it contains, as well as the system
80		call and library manual pages.
81		[ 5M gzipped, 18M uncompressed ]
82
83	etc	This distribution set contains the system configuration
84		files that reside in /etc and in several other places.
85		This set MUST be installed if you are installing the
86		system from scratch, but should NOT be used if you are
87		upgrading.  (If you are upgrading, it's recommended that
88		you get a copy of this set and CAREFULLY upgrade your
89		configuration files by hand.)
90		[ 70K gzipped, 360K uncompressed ]
91
92	games	This set includes the games and their manual pages.
93		[ 3M gzipped, 7M uncompressed ]
94
95	man	This set includes all of the manual pages for the
96		binaries and other software contained in the base set.
97		Note that it does not include any of the manual pages
98		that are included in the other sets.
99		[ 1M gzipped, 4M uncompressed ]
100
101	misc	This set includes the system dictionaries (which are
102		rather large), the typesettable document set, and
103		man pages for other architectures which happen to be
104		installed from the source tree by default.
105		[ 2M gzipped, 7M uncompressed ]
106
107	text	This set includes NetBSD's text processing tools,
108		including groff, all related programs, and their
109		manual pages.
110		[ 1M gzipped, 3M uncompressed ]
111
112.../sun3/binary/security/
113
114The sun3 security distribution set is named "secr" and can be
115found in the "sun3/binary/security" subdirectory of the NetBSD
116_VER distribution tree.  It contains security related binaries
117which depend on cryptographic source code. You do not need this
118distribution set to use encrypted passwords in your password
119file; the "base" distribution includes a crypt library which can
120perform only the decryption function.  The security distribution
121includes a version of the Kerberos IV network security system,
122and a Kerberized version of the "telnet" program.  The "secr"
123distribution set can be found only on those sites which carry
124the complete NetBSD distribution and which can legally obtain
125it.  (Remember, because of United States law, it may not be
126legal to distribute this set to locations outside of the United
127States and Canada.)
128	[ 128K gzipped, 275K uncompressed ]
129
130The sun3 binary distribution sets are distributed as gzipped tar files
131named with the extension ".tgz", e.g. "base.tgz".  Each sun3 binary
132distribution set also has its own checksum files, just as the source
133distribution sets do.
134
135The instructions given for extracting the source sets work equally
136well for the binary sets, but it is worth noting that if you use that
137method, the files are extracted "below" the current directory.  That
138is, if you want to extract the binaries "into" your system, i.e.
139replace the system binaries with them, you have to run the commands:
140
141	cd /
142	tar --unlink -zxvpf set.tar.gz
143
144Note that the "--unlink" flags is very important!  If you upgrade or
145install this way, those programs that you are using at the time will
146NOT be replaced unless you run "tar" with the "--unlink" option.  If
147you follow the normal installation or upgrade procedures, this will be
148taken care of for you.
149