- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Auto load tape into tape drive??
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
02-25-2003 02:42 AM
02-25-2003 02:42 AM
Auto load tape into tape drive??
into tape drive? Which command can do it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2003 02:58 AM
02-25-2003 02:58 AM
Re: Auto load tape into tape drive??
#
# Check DLT7000 Autoloader
#
PICKER=`mc -p /dev/picker -r DS|grep DT|awk '{print $2}'`
if [ $PICKER = "FULL" ]
then echo "Tape loaded"
else echo "No tape, Attempting to load tape from slot 1 PLEASE CHECK"
mc -p /dev/picker -s S1 -d D1
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2003 03:07 AM
02-25-2003 03:07 AM
Re: Auto load tape into tape drive??
Normal tape drive don't provide the option of auto load. We uses LTO(Linear tape open) with TSM(tivoli storage manager) which has the auto loading option
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2003 04:12 AM
02-25-2003 04:12 AM
Re: Auto load tape into tape drive??
If you're interested i can share it.
HeCou
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2003 06:33 AM
02-25-2003 06:33 AM
Re: Auto load tape into tape drive??
Then create a text file (e.g text_file) to move the tape from slot to drive
eg. To move tape from Slot 1 To drive 1,
So the text file (text_file)should be as below :
move S1 D1
then issue the following command :
#/opt/omni/lbin/uma -ioctl /dev/rac/c#t#d0
Hopes will help.