- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Omnibacks's uma utility
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
01-29-2002 11:29 AM
01-29-2002 11:29 AM
Someone know why ?
I'm trying to invoce uma from cron to move a tape from a slot to a drive in a DLT.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 11:35 AM
01-29-2002 11:35 AM
Re: Omnibacks's uma utility
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:42 PM
01-29-2002 12:42 PM
Re: Omnibacks's uma utility
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 01:02 PM
01-29-2002 01:02 PM
Re: Omnibacks's uma utility
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 01:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 01:17 PM
01-29-2002 01:17 PM
Re: Omnibacks's uma utility
Just I as test I ran the following script to do a "stat" and send the result to a temp file under cron; it worked like a champ.
#!/usr/bin/sh
TDIR=${TMPDIR:-/var/tmp}
PID=$$
C1=${TDIR}/C${PID}_1.cmd
T1=${TDIR}/C${PID}_1.txt
ROBOT=/dev/robot/c2t3d0
D1=/dev/rmt/1mnb
D2=/dev/rmt/3mnb
echo "stat" > ${C1}
/opt/omni/lbin/uma -ioctl ${ROBOT} -tty -barcode -device ${D1} ${D2} < ${C1} > ${T1} 2>&1
STAT=$?
rm -f ${C1}
exit ${STAT}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 02:30 PM
01-29-2002 02:30 PM
Re: Omnibacks's uma utility
You right, a fix my problem adding the -tty option.
Thank you very much.