How to get more info about SCSI drives installed in server

Hello,

How do I find out what kind of SCSI drive (like RPM, model...) is attached to the server? I just know there are 2 drives (like sda/sdb)
Thanks

Code:
root@localhost [~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda1             7.9G  1.6G  5.9G  22% /
/dev/sdb1              57G  252M   54G   1% /home
none                 1005M     0 1005M   0% /dev/shm
/dev/sda5             487M  8.1M  454M   2% /tmp
/dev/sda2              20G  269M   19G   2% /var
Code:
root@localhost [~]# dmesg|grep scsi
scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36
(scsi0:A:0): 160.000MB/s transfers (80.000MHz DT, offset 127, 16bit)
(scsi0:A:1): 160.000MB/s transfers (80.000MHz DT, offset 127, 16bit)
scsi0:A:0:0: Tagged Queuing enabled.  Depth 32
scsi0:A:1:0: Tagged Queuing enabled.  Depth 32
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Attached scsi disk sdb at scsi0, channel 0, id 1, lun 0

 

 

 

 

Top