cl> devices
| Dome | Computer | IRAF Name | Unix Name | Description |
| 36inch | driftwood | mta | /dev/rmt/5bn | Exabyte Eliant 820 |
| mtacomp | /dev/rmt/5cbn | Exabyte - compressed | ||
| mtb | /dev/rmt/6bn | Exabyte Eliant 820 | ||
| mtbcomp | /dev/rmt/6cbn | Exabyte - compressed | ||
| mtchi (mtc) | /dev/rmt/2hbn | DLT7000 - 35Gb | ||
| mtclo | /dev/rmt/2lbn | DLT7000 - 20Gb | ||
| mtccomp | /dev/rmt/2ubn | DLT7000 - compressed | ||
| mtz | /dev/rmt/9bn | DAT DDS-4 | ||
| mtzcomp | /dev/rmt/9cbn | DAT DDS-4 - compressed | ||
| 36inch | Taupe | mta | /dev/nrst8 | Exabyte 8705 |
| mta8500c | /dev/nrst16 | 8705 - compressed | ||
| mtb | /dev/nrsx2 | Exabyte 8200 | ||
| mtc | /dev/nrst3 | Seagate Dat |
You can record your data by either using the IRAF wfits task or the Unix tar task
IRAF
In the IRAF Data Reduction window:
Allocate the appropriate drive
allocate mtccomp (or mtb, etc...)
Write your data to tape with the wfits
task
wfits dflat*.fits mtccomp yes
- The "yes" parameter indicates a blank tape. Alternatively
you can type "no" to indicate a non-blank tape.
The cl> prompt will return when the data has been written.
Before leaving with your tape, make sure that all of your data has
been written to tape.
rfits mtccomp 1-999 make-- short+ old+
Rewind your tape (never do this manually!)
rewmtccomp
Deallocate the drive
deallocate mtccomp
UNIX
You need to allocate the appropriate drive in the IRAF Data Reduction
window
allocate mtccomp (or mtb, etc...)
In a Unix xterm or xgterm window:
Write your data to tape with the tar
task
tar -cvf /dev/rmt/2ubn dflat*.fits
To list the files on a tape type
tar -tvf /dev/rmt/2ubn
Rewind the tape with
tar -f /dev/rmt/2ubn
Deallocate the drive
From the IRAF window type deallocate mtccomp