StorageTek SL150: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "<source" to "<syntaxhighlight") |
m (Text replacement - "</source" to "</syntaxhighlight") |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[ | [[Category:Backup]] | ||
=StorageTek SL150 Modular Tapelibrary= | =StorageTek SL150 Modular Tapelibrary= | ||
Line 12: | Line 12: | ||
"HP Ultrium 6-SCSI ","HP Ultrium 6-SCSI","HP Ultrium 6","HP Ultrium LTO 6","HP_LTO_GEN_6"; | "HP Ultrium 6-SCSI ","HP Ultrium 6-SCSI","HP Ultrium 6","HP Ultrium LTO 6","HP_LTO_GEN_6"; | ||
HP_LTO_GEN_6 = 2,0x3B,0,0x18659,4,0x00,0x46,0x58,0x5A,3,60,1200,600,1200,600,600,18000 | HP_LTO_GEN_6 = 2,0x3B,0,0x18659,4,0x00,0x46,0x58,0x5A,3,60,1200,600,1200,600,600,18000 | ||
</ | </syntaxhighlight> | ||
The vendor string has to be exactly 8 characters: | The vendor string has to be exactly 8 characters: | ||
HP<6 spaces>Product... | HP<6 spaces>Product... | ||
Line 19: | Line 19: | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
# modunload -i $(modinfo | nawk '$6=="st"{print $1}') | # modunload -i $(modinfo | nawk '$6=="st"{print $1}') | ||
</ | </syntaxhighlight> | ||
Check if the new config settings matched the drive: | Check if the new config settings matched the drive: | ||
Line 26: | Line 26: | ||
"HP Ultrium 6-SCSI", "HP Ultrium 6-SCSI ", "CFGHPULTRIUM6SCSI"; | "HP Ultrium 6-SCSI", "HP Ultrium 6-SCSI ", "CFGHPULTRIUM6SCSI"; | ||
CFGHPULTRIUM6SCSI = 2,0x3B,0,0x18619,4,0x58,0x58,0x5A,0x5A,3,60,1200,600,1200,600,600,18000; | CFGHPULTRIUM6SCSI = 2,0x3B,0,0x18619,4,0x58,0x58,0x5A,0x5A,3,60,1200,600,1200,600,600,18000; | ||
</ | </syntaxhighlight> | ||
==General Documentation== | ==General Documentation== |
Latest revision as of 05:10, 26 November 2021
StorageTek SL150 Modular Tapelibrary
General Knowledge
Default Password
passw0rd
Solaris Configuration
To use the Ultrium-6 Tape drives with Solaris you have to put the following into your st.conf:
tape-config-list =
"HP Ultrium 6-SCSI ","HP Ultrium 6-SCSI","HP Ultrium 6","HP Ultrium LTO 6","HP_LTO_GEN_6";
HP_LTO_GEN_6 = 2,0x3B,0,0x18659,4,0x00,0x46,0x58,0x5A,3,60,1200,600,1200,600,600,18000
The vendor string has to be exactly 8 characters: HP<6 spaces>Product...
Unload the st driver after changing the st.conf:
# modunload -i $(modinfo | nawk '$6=="st"{print $1}')
Check if the new config settings matched the drive:
# mt -f /dev/rmt/0cn config
"HP Ultrium 6-SCSI", "HP Ultrium 6-SCSI ", "CFGHPULTRIUM6SCSI";
CFGHPULTRIUM6SCSI = 2,0x3B,0,0x18619,4,0x58,0x58,0x5A,0x5A,3,60,1200,600,1200,600,600,18000;