Below is a basic HOWTO for writing a DLT tape on the node grus (in room 501B, the Sun room).
ls -l /dev | grep cbn
lrwxrwxrwx 1 root root 8 Feb 28 2001 nrst27 -> rmt/1cbn
lrwxrwxrwx 1 root root 8 May 3 2000 nrst28 -> rmt/0cbn
In this example, it returns two names: /dev/nrst27 and /dev/nrst28. Check each to see where your tape is found:
mt -t /dev/nrst27 status
If no tape is found (and you have loaded it) - you have the number wrong, try nrst28.
/usr/local/bin/tar -cvf - /f/kelley | dd obs=16384b of=/dev/nrst27
mt -t /dev/nrst27 rewind
dd ibs=16384b if=/dev/nrst27 | tar -tvf -
dd ibs=16384b if=/dev/nrst27 obs=20b | tar -xvf -
(Thanks to Zo Webster for putting these instructions together!)