tapedrive-0.conf.example 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Preparations:
  3. #
  4. # on Linux use "lsscsi --generic"
  5. # to get a list of your SCSI devices.
  6. # However, normaly you should access your devices by-id
  7. # (eg. /dev/tape/by-id/scsi-350011d00018a5f03-nst)
  8. # or by-path
  9. # (eg. /dev/tape/by-path/pci-0000:0d:08.0-sas-phy4-0x500110a0015ec9e0-lun-0-nst),
  10. # because the short device names like /dev/nst1
  11. # might change on reboot.
  12. #
  13. Device {
  14. Name = "tapedrive-0"
  15. DeviceType = tape
  16. # default:0, only required if the autoloader have multiple drives.
  17. DriveIndex = 0
  18. # if only one drive is available, this is normally /dev/nst0.
  19. # However, it is advised to access it via id (/dev/tape/by-id/...).
  20. ArchiveDevice = /dev/nst0
  21. #ArchiveDevice = /dev/tape/by-id/scsi-350011d00018a5f03-nst
  22. # arbitrary string that descripes the the storage media.
  23. # Bareos uses this to determine, which device can be handle what media.
  24. MediaType = LTO
  25. # enable "Check Labels" if tapes with ANSI/IBM labels
  26. # should be preserved
  27. #Check Labels = yes
  28. AutoChanger = yes # default: no
  29. AutomaticMount = yes # default: no
  30. MaximumFileSize = 10GB # default: 1000000000 (1GB)
  31. }