LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 12-03-2004, 12:33 PM   #1
williamsakai
LQ Newbie
 
Registered: Jul 2004
Posts: 7

Rep: Reputation: 0
Sony SDT-11000


Hey there... I'm newbie...

I am having difficulties with a tape drive (Sony SDT-11000). The OS does not see the new hardware at start up and any attempt to work with the drive always fails as the system is convinced that there is no /dev/st0.

What can i do?? Please, any help will be welcome...

OS:Mandrake 10.0
Kernel: 2.6.3-7mdksecure
 
Old 12-03-2004, 02:12 PM   #2
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Make sure the tape drive module st is loading.

Is this a SCSI tape drive?

Last edited by michaelk; 12-03-2004 at 02:22 PM.
 
Old 12-06-2004, 08:49 AM   #3
williamsakai
LQ Newbie
 
Registered: Jul 2004
Posts: 7

Original Poster
Rep: Reputation: 0
First, thanks for help!

Yes, is a SCSI tape drive... But, how can i do this ??
 
Old 12-06-2004, 11:10 AM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Post the output of the console command lsmod.
Post the output of the console command lspci.

This will show what modules are loading and the type of SCSI controller in your PC.

You can try this command:
modprobe st
 
Old 12-07-2004, 11:47 AM   #5
williamsakai
LQ Newbie
 
Registered: Jul 2004
Posts: 7

Original Poster
Rep: Reputation: 0
Nothing happen...

hereīs go (lsmod):

Module Size Used by
st 39512 0
nls_cp437 6560 1
nls_iso8859-1 4896 1
smbfs 66520 2
sg 39772 0
scsi_mod 117616 2 st,sg
hid 55136 0
snd-mixer-oss 19008 0
snd 54884 1 snd-mixer-oss
floppy 61332 0
md5 4864 1
ipv6 251616 14
i810_audio 34420 1
ac97_codec 18828 1 i810_audio
soundcore 10208 3 snd,i810_audio
af_packet 22824 0
iptable_filter 3616 0
iptable_mangle 3616 0
iptable_nat 24996 0
ip_conntrack 33612 1 iptable_nat
ip_tables 18720 3 iptable_filter,iptable_mangle,iptable_nat
8139too 25760 0
mii 6080 1 8139too
intel-agp 18364 1
agpgart 32460 1 intel-agp
ide-cd 41764 0
cdrom 38336 1 ide-cd
dm-mod 40928 0
uhci-hcd 31856 0
usbcore 102908 4 hid,uhci-hcd
rtc 13704 0
ext3 114216 1
jbd 61976 1 ext3

the command lspci not exist...

when i try to execute modprobe st, nothing happens...

thanks !!
 
Old 12-07-2004, 04:41 PM   #6
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
lspci should be in the /sbin directory. Do you know the make and model of the SCSI controller?

It is typical for linux not to return any status messages if the command completes successfully. You can see from the output you posted that st is loading.
 
Old 12-08-2004, 04:49 AM   #7
williamsakai
LQ Newbie
 
Registered: Jul 2004
Posts: 7

Original Poster
Rep: Reputation: 0
i search and the real name for lspci in mandrake is lspcidrake:

> lspcidrake
intel-agp : Intel Corporation|82845 845 (Brookdale) Chipset Host Bridge [BRIDGE_HOST]
unknown : Intel Corporation|82845 845 (Brookdale) Chipset AGP Bridge [BRIDGE_PCI]
i810_rng : Intel Corporation|82820 815e (Camino 2) Chipset PCI [BRIDGE_PCI]
i810-tco : Intel Corporation|82820 815e (Camino 2) Chipset ISA Bridge (ICH2) [BRIDGE_ISA]
unknown : Intel Corporation|82820 815e (Camino 2) Chipset IDE U100 [STORAGE_IDE]
usb-uhci : Intel Corporation|82820 815e (Camino 2) Chipset USB (Hub A) [SERIAL_USB]
unknown : Intel Corporation|82820 815e (Camino 2) Chipset SMBus [SERIAL_SMBUS]
usb-uhci : Intel Corporation|82820 815e (Camino 2) Chipset USB (Hub B) [SERIAL_USB]
i810_audio : Intel Corporation|ICH2 810 Chipset AC'97 Audio Controller [MULTIMEDIA_AUDIO]
unknown : Silicon Integrated System|SiS325 2D/3D Accelerator [DISPLAY_VGA]
aic7xxx : Adaptec|7892A [STORAGE_SCSI]
8139too : Realtek|RTL-8139 [NETWORK_ETHERNET]
unknown : Linux 2.6.3-7mdksecure uhci_hcd|UHCI Host Controller [Hub]
unknown : unknown (0424/0140/ffff/ffff) [Hub]
unknown : Linux 2.6.3-7mdksecure uhci_hcd|UHCI Host Controller [Hub]

...and now??
 
Old 12-08-2004, 08:23 AM   #8
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
aic7xxx : Adaptec|7892A [STORAGE_SCSI]

Try:
modprobe aic7xxx
 
Old 12-09-2004, 05:37 AM   #9
williamsakai
LQ Newbie
 
Registered: Jul 2004
Posts: 7

Original Poster
Rep: Reputation: 0
Thumbs up Eureka!

gotcha!! thanks a lot, pal!!

Few more questions:

- how verify if the backup is working ??
- what is the best software (free) for backup ?? (i hear something about AMANDA, but i canīt installing in madrake).
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Sony SDT-9000 Tape Drive bad_andy Linux - Hardware 1 03-18-2005 05:36 PM
Sony Vaio VGN-B1XP / sony driver question kentri9 Linux - Laptop and Netbook 0 12-27-2004 11:00 AM
Driver for the Sony SDT-S7000 tape drive Maxmore Linux - Newbie 1 06-04-2004 04:10 PM
Help installing a Sony SDT-9000 tape drive ghoppy Linux - Hardware 0 04-27-2003 06:42 AM
intalation of DAT SDT 9000 whith AHA-2904 ibustech Linux - Software 1 10-03-2001 08:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration