- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: tape driver
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 09:58 PM
11-18-2003 09:58 PM
I want use de st command for chech the tape but is impossible because the driver installed is tape2 and not stape.
I come modify that
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:02 PM
11-18-2003 10:02 PM
Re: tape driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:04 PM
11-18-2003 10:04 PM
Re: tape driver
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:17 PM
11-18-2003 10:17 PM
Re: tape driver
but can i use st whith a tape 2 driver ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:24 PM
11-18-2003 10:24 PM
Re: tape driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:47 PM
11-18-2003 10:47 PM
Re: tape driver
I have another identical dds3 installed on L1000 server and the kernel it recognizes stape.
The only differents is the hardware of server, the controller and HP-UX installed at 32 bit for a I70 and 64 for a Lclass.
I have used the command stcheckconf because
I thought was this the problem, but in the Lclass machine the configuration of the shared tape is not applied and the kernel know it how stape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:56 PM
11-18-2003 10:56 PM
Solution> st -f /dev/rmt/c5t3d0BEST -s
st: invalid device file
But on the stape connected DLT I get;
> st -f /dev/rmt/1m -s
Device not ready
It looks like its simply not designed to work on the tape2 driver, sorry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 11:26 PM
11-18-2003 11:26 PM
Re: tape driver
The HSC port is only present in the K class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 11:33 PM
11-18-2003 11:33 PM
Re: tape driver
Can you change the kernel, if yes let me know i shall give a procedure to carry through.
Take a complete backup before u start the procedure. This can help u in making the SCSI pass through drivers staple
this is on among the procedures, please run through this. If applicable change the required parameters and values for your tape library.
The Procedure is as below,
1. Verify that the unit has a SCSI interface compatible with the SCSI controller that is installed.
2. Determine the availability of SCSI Ids. use ioscan -f
3. Each SCSI bus must have a unique SCSI Id. Find out whether the Id is matched to one assigned.
4. Check out to configure using the utility of the backup, and set the tape library to SCSI.
5. try going to build area - cd /stand/build.
6. Create a system file from the existing kernel.
/usr/lbin/sysadm/system_prep -s system
7. check if the stape driver is already configured into your system. the stape sriver used for the DLT drivers can checked by -
#grep stape system
8. If no "stape" line printed, add a line to the "SCSI drivers" area of the system file (/stand/build/system)
stape
9.check if sctl SCSI pass-through driver is already confgiured into your current kernel.
#grep sctl system
10. If no "sctl" line printer, add a line to the "SCSI drivers" area of the system file (/stand/build/system)
sctl
A driver statement is needed since the system can't autoconfigure the SCSI pass-through driver.
11. Append the driver lines to the system file
driver
Note :
e.g - driver 8/4.6.0 sctl
12. save the old system file
mv /stand/system /stand/system.old
13. Build a new kernel
/usr/sbin/mk_kernel
14. Verify the pass-through driver has been built into the new kernel.
what ./vmunix_test | grep scsi_ctl
15. Save the old kernel
mv /stand/vmunix /stand/vmunix.old
16. Move the new kernel to the current one :
mv ./vmunix_test /stand/vmunix
17. Boot the system
/usr/sbin/shutdown -r 0
18. Once restarted
verrify using "ioscan -f"
19. Determine the major number for the SCSI pass-through driver.
lsdev -d sctl
The O/p might be,
Character Block Driver Class
203 -1 sctl ctl
20. Create the special device file to access the scsi_ctl perpheral
/usr/sbin/mknod /dev/<
II - 2 digit card instance number of "ext_bus" entry
T - target SCSI ID number (SCSI ID)
L - Lun number (SCSI LUN)
00 - Reserved fields, must be zero
E.g : /usr/sbin/mknod /dev/rmt/lxb c 203 0x006000
21. Type "ioscan -fd sctl"
Check whether the driver is configured.
22. Complie the scsi i/o test program
cc /usr/contrib/src/scsi_io.c -o /usr/contrib/bin/scsi_io
23. Run SCSI i/o test program
/usr/contrib/bin/scsi_io /dev/rmt/lxb
The display should some what similar to this,
OVERLANDLXB 032322-Oct-97
Thanx & Regards,
Roby