Index of /Distributions/UCB/2.11BSD_patch277
 Name                    Last modified      Size  Description
 Name                    Last modified      Size  Description
![[PARENTDIR]](/icons/back.gif) Parent Directory                             -
 Parent Directory                             -   
![[   ]](/icons/unknown.gif) PATCHLEVEL              1995-11-13 17:05    4
 PATCHLEVEL              1995-11-13 17:05    4   
![[   ]](/icons/unknown.gif) boot                    1995-11-13 17:09   32K
 boot                    1995-11-13 17:09   32K  
![[   ]](/icons/unknown.gif) disklabel               1995-11-13 17:10   35K
 disklabel               1995-11-13 17:10   35K  
![[   ]](/icons/unknown.gif) icheck                  1995-11-13 17:12   31K
 icheck                  1995-11-13 17:12   31K  
![[TXT]](/icons/text.gif) maketape.c              1995-11-13 17:21  2.1K
 maketape.c              1995-11-13 17:21  2.1K  
![[   ]](/icons/unknown.gif) maketape.data           1995-11-13 17:22   78
 maketape.data           1995-11-13 17:22   78   
![[   ]](/icons/unknown.gif) mkfs                    1995-11-13 17:23   31K
 mkfs                    1995-11-13 17:23   31K  
![[   ]](/icons/unknown.gif) mtboot                  1995-11-13 17:23  512
 mtboot                  1995-11-13 17:23  512   
![[DIR]](/icons/folder.gif) new/                    1996-07-01 01:06    -
 new/                    1996-07-01 01:06    -   
![[   ]](/icons/unknown.gif) restor                  1995-11-13 17:24   33K
 restor                  1995-11-13 17:24   33K  
![[VID]](/icons/movie.gif) root.dump               1995-11-13 17:41  4.2M
 root.dump               1995-11-13 17:41  4.2M  
![[TXT]](/icons/text.gif) setup.ascii             1995-11-13 17:43  188K
 setup.ascii             1995-11-13 17:43  188K  
![[   ]](/icons/a.gif) setup.ps                1995-11-13 17:46  588K
 setup.ps                1995-11-13 17:46  588K  
![[   ]](/icons/unknown.gif) tape1.1.lst             1996-01-11 06:18  312K
 tape1.1.lst             1996-01-11 06:18  312K  
![[   ]](/icons/unknown.gif) tape1.2.lst             1996-01-11 06:19   73K
 tape1.2.lst             1996-01-11 06:19   73K  
![[   ]](/icons/unknown.gif) tape1.tar1              1995-11-13 19:22   30M
 tape1.tar1              1995-11-13 19:22   30M  
![[   ]](/icons/unknown.gif) tape1.tar2              1995-11-13 19:40  4.8M
 tape1.tar2              1995-11-13 19:40  4.8M  
![[   ]](/icons/unknown.gif) tape2.lst               1996-01-11 06:21  469K
 tape2.lst               1996-01-11 06:21  469K  
![[   ]](/icons/tar.gif) tape2.tar               1995-11-13 22:04   39M
 tape2.tar               1995-11-13 22:04   39M  
	The format of a 2.11BSD boot tape is:
	File	Block		Content
	 #	 Size
	----	-----		-------
	 0	512		bootblock,bootblock,boot
	 1	1024		disklabel
	 2	1024		mkfs
	 3	1024		restor
	 4	1024		icheck
	 5	10240		root.dump
	 6	10240		tape1.tar1
	 7	10240		tape1.tar2
	 8	10240		tape2.tar1
	 The complete kit will fit on a TK50 (barely) or a 6250BPI 9-track.
	 Obviously a DAT (4mm) or 8mm tape will have no problem.
	 For TK25 or 1600BPI 9-track files 0 thru 7 go on volume 1 and
	 file 8 goes on a second volume by itself (it barely fits, be sure
	 you don't have a tape that's short of being a 2400' reel).
	 You can either use the 'maketape' program to write files 0 thru 4
	 on the tape or use a series of 'dd' commands.
	 To use 'maketape':
		cc -o maketape maketape.c
		./maketape /dev/nrmt0 maketape.data
		dd if=root.dump of=/dev/nrmt0 bs=10240c
		dd if=tape1.tar1 of=/dev/nrmt0 bs=10240c
		dd if=tape1.tar2 of=/dev/nrmt0 bs=10240c
		dd if=tape2.tar of=/dev/rmt0 bs=10240c
	Using only 'dd':
		cat mtboot mtboot boot | dd of=/dev/nrmt0 obs=512 conv=osync
		foreach i (disklabel mkfs restor icheck)
		  dd if=${i} of=/dev/nrmt0 obs=1024 conv=osync
		end
		dd if=root.dump of=/dev/nrmt0 bs=10240c
		dd if=tape1.tar1 of=/dev/nrmt0 bs=10240c
		dd if=tape1.tar2 of=/dev/nrmt0 bs=10240c
		dd if=tape2.tar of=/dev/rmt0 bs=10240c
	The setup and installation documents are in the files 'setup.ascii'
	and 'setup.ps'.  The first file is plain ASCII text while the second
	is postscript suitable for sending to a laser printer or ghostview.