#!/bin/sh
mt -f /dev/nrst0 status
echo copyright
dd if=copyright of=/dev/nrst0 bs=1b conv=sync
sleep 15
echo tape2_xdrtoc
dd if=SunOS35.sun3.QIC-24b.xdrtoc of=/dev/nrst0 bs=1b conv=sync
sleep 15
for i in sys networking debugging usr
do
	echo sun3_$i.tar
	dd if=sun3_$i.tar bs=1b conv=sync|dd of=/dev/nrst0 bs=32k
	sleep 15
done
echo copyright
dd if=copyright of=/dev/nrst0 bs=1b conv=sync
sleep 15
mt -f /dev/nrst0 status
