How do I mount a SCSI tape drive?
I can see the drive being detected while the system is booted but don't know how to mount it. I have tried this so far:
Code:
root@mail:~# mount /dev/sda1 /mnt/tape
mount: mount point /mnt/tape does not exist
root@mail:~# ls /mnt
cdrom/ floppy/ hd/
root@mail:~# mkdir /mnt/tape
root@mail:~# mount /dev/sda1 /mnt/tape
mount: /dev/sda1 is not a valid block device
root@mail:~# mount /dev/sda /mnt/tape
mount: /dev/sda is not a valid block device
root@mail:~# mount /dev/sdb /mnt/tape
mount: /dev/sdb is not a valid block device
root@mail:~# mount /dev/sg0 /mnt/tape
mount: /dev/sg0 is not a block device
Are there any other options I'm missing?