Operating System - Linux
1752795 Members
5864 Online
108789 Solutions
New Discussion юеВ

Unable to detect DDS tape drive.

 
SOLVED
Go to solution
paul richard_2
New Member

Unable to detect DDS tape drive.

Hi, I'm trying to find ways how to detect the DDS tape drive of HP DL380 on LINUX Rhel 4. can anyone help me how to. i also tried using scsi_mod - aic79xx. Thanks //paul
3 REPLIES 3
Steven E. Protter
Exalted Contributor
Solution

Re: Unable to detect DDS tape drive.

Shalom,

Most lsmod

cat /etc/redhat-release
uname -a

Check that the tape drive is not set to scsi-id zero. The scsi card needs that.

Don't hang it off the smart card scsi interface it won't work with that.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
paul richard_2
New Member

Re: Unable to detect DDS tape drive.

Hi Sir,

The Tape drive is internal.

Regards,
Paul
Jeeshan
Honored Contributor

Re: Unable to detect DDS tape drive.

On a Linux system, the scsi tape drives are accessed through /dev/st0, /dev/st1...

Just a test : insert a tape into the device, then try to read/write data on it :

cd /tmp
tar cvf /dev/st0 .
tar tvf /dev/st0

Note one important thing : the driver for the scsi card used for your tape device normally should be loaded automatically. If this is not the case, you may configure your system to do so :

=> edit /etc/modules.conf and add :

alias scsi_hostadapter aic7xxx

(replace aic7xxx by the driver that best matches your scsi card).

=> type "depmod" -a to check the kernel module dependency graph
a warrior never quits