cancel
Showing results for 
Search instead for 
Did you mean: 

How to find Drive Firmware Version?

chandrasekarmp
Level 4

Hi All,

Could any one please help me to find "LTO3 & LTO4 Tape Drive firmware version from CLI in Netbackup" (other than looking in to SL console)

IBM Tape Drives attached to Solaris 10 server.

Regards,

Chandrasekar

1 ACCEPTED SOLUTION

Accepted Solutions

thesanman
Level 6

Or use scan, firmware rev is that 3rd column inside the ""'s

(like tpautoconf command is in /usr/openv/volmgr/bin)

 

scan -tape | grep -i inquiry

Inquiry    : "IBM     ULT3580-TD4     A239"
Inquiry    : "IBM     ULT3580-TD3     93G6"
Inquiry    : "IBM     ULT3580-TD3     93G6"
 

View solution in original post

4 REPLIES 4

Marianne
Level 6
Partner    VIP    Accredited Certified

tpautoconf -t on a media server with access to all tape drives.
(Command is in /usr/openv/volmgr/bin)

It will return something like this:

 

TPAC60 IBM     ULTRIUM-TD2     53Y2 1110295062 2 0 0 0 Tape0 - - 
TPAC60 IBM     ULTRIUM-TD2     53Y2 1110302222 2 0 1 0 Tape1 - - 
......
 
Column 3 is the firmware version.

thesanman
Level 6

Or use scan, firmware rev is that 3rd column inside the ""'s

(like tpautoconf command is in /usr/openv/volmgr/bin)

 

scan -tape | grep -i inquiry

Inquiry    : "IBM     ULT3580-TD4     A239"
Inquiry    : "IBM     ULT3580-TD3     93G6"
Inquiry    : "IBM     ULT3580-TD3     93G6"
 

Mike_Gavrilov
Moderator
Moderator
Partner    VIP    Accredited Certified

Or send an inquiry via luxadm smiley

master# luxadm inq /dev/rmt/0cbn

INQUIRY:
  Physical Path:
  /devices/pci@8,600000/SUNW,emlxs@1,1/fp@0,0/st@w500104f0009e2e7f,0:cbn
Vendor:                     IBM     
Product:                    ULTRIUM-TD5     
Revision:                   BBN2
Serial Number               1068059041
Device type:                0x1 (Tape device)
Removable media:            yes
Medium Changer Element:     no
ISO version:                0
ECMA version:               0
ANSI version:               6Reserved
Terminate task:             no
Response data format:       2
Additional length:          0x41
Command queueing:           no
              VENDOR-SPECIFIC PARAMETERS
Byte#                  Hex Value                             ASCII
36    00 00 03 00 00 00 00 00 00 00 00 00 00 00 20 30     .............. 0
      00 00 00 00                                         ....

chandrasekarmp
Level 4

Thanks for your updates Marianne van den Berg and thesanman