Results 1 to 3 of 3
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
...
- 10-14-2005 #1
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:
Are there any other options I'm missing?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
Registered Linux user #389109
My Semi-Linux Blog
- 10-14-2005 #2
I just noticed this when I did a dmesg |more:
Not sure what it means though!Code:SCSI subsystem driver Revision: 1.00 kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2 kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2 kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
Registered Linux user #389109
My Semi-Linux Blog
- 06-29-2006 #3Just Joined!
- Join Date
- Jun 2006
- Posts
- 3
tape only with tar
Hello,
you can not mount a tape like a hard disk because it is a sequemtial device.
Use commands like
# tar -xf /dev/st0
# tar -tf /dev/st0
# tar -cf /dev/st0 <files,directories>
to get access to the tape (read, read inventory, write)
Another helpfully tape command is mt.
for example:
# mt -f /dev/st0 status
# mt -f /dev/st0 eject
Use man mt or man tar for more information.
CU


Reply With Quote