Notes
  
   - man mt
    
- mt -f /dev/st0 status
    - mt -f /dev/st0 rewind
    - mt -f /dev/st0 offline
   
   
- Debian docs 
    - backup
   
- Debian Help
Tape Backup Basics
  Backup
  
mt -f /dev/st0 rewind
tar cvzf /dev/st0 path_to_backup
mt -f /dev/st0 status
tar tvzf /dev/st0
mt -f /dev/st0 offline
  
  List
mt -f /dev/st0 rewind
tar tvzf /dev/st0 
  Restore
  
cd relevant_location
mt -f /dev/st0 rewind
tar xvzf /dev/st0 path_to_restore
  
  Erase
  
mt -f /dev/st0 erase
  
  cpio
  
   Docs on cpio
  
cd relevant_location
find . | cpio -ov -H tar -O /dev/st0
  List
mt -f /dev/st0 rewind
cpio -itv -I /dev/st0
  Restore
mt -f /dev/st0 rewind
cpio -ivmud -I /dev/st0
  Other
Copying from tape drive
mt -f /dev/st0 rewind
dd if=/dev/sd0 of=file_name
Copyring to tape drive
mt -f /dev/st0 rewind
dd if=file_name of=/dev/sd0