- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DLT backup problem
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
05-16-2004 02:40 PM
05-16-2004 02:40 PM
DLT backup problem
I am using quantum DLT4000 series tape drive.
Daily i am taking backup through cron job at midnight time,actually the problem is after loaded tape, "tape in use" LED is glowing i.e (tape correctly loaded )and cron job time the tape goes to "operation handle" i.e "operation handle" LED is ON.So daily backup failed,that time i am taking manual backup.I don't know whether it is tape drive problem or any other problem.
Please give me some solutions.
Thanks,
Suresh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 02:51 PM
05-16-2004 02:51 PM
Re: DLT backup problem
First to do things when your tape drive start giving troubles.
** Clean your tape drive with a cleaning catridge.
** Try using a new Catridge. Old / worn out catridges could also give trouble.
With best wishes
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 03:29 PM
05-16-2004 03:29 PM
Re: DLT backup problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 03:50 PM
05-16-2004 03:50 PM
Re: DLT backup problem
In manual backup time,there is no starting problem.Only problem in automat backup.
Actually i used new tape only.
Thanks,
Suresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 04:25 PM
05-16-2004 04:25 PM
Re: DLT backup problem
As michael mentioned, does the backup used to work automatically before??
how do you take manual backup? run the script what is run by the cron??
regds
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 04:42 PM
05-16-2004 04:42 PM
Re: DLT backup problem
I think in your script you must use following command to make it online before going in for backup.
#mt -f
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 06:24 PM
05-16-2004 06:24 PM
Re: DLT backup problem
I am using simple script i.e
Script:
#/!/bin/sh
cd /tes/tes1
tar -cvf /dev/rmt/1m .
In manual backup time, i used the above script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 06:33 PM
05-16-2004 06:33 PM
Re: DLT backup problem
Have you checked to see what is the contents of the tape regardless of the failure?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 07:02 PM
05-16-2004 07:02 PM
Re: DLT backup problem
Try doing this
Script:
#/!/bin/sh
cd /tes/tes1
mt -f
tar -cvf /dev/rmt/1m
mt -f
Remember you execute this script as ROOT.
After backup is over try ejecting the TApe manually.
This should work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 07:18 PM
05-16-2004 07:18 PM
Re: DLT backup problem
I entered both offline and on line mt -f command,the below error showing,
Error:
# mt -f /dev/rmt/0m online
mt: unknown command "-f"
# mt -f /dev/rmt/0m offline
mt: unknown command "-f"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 08:03 PM
05-16-2004 08:03 PM
Re: DLT backup problem
#/!/bin/sh
cd /tes/tes1
/usr/bin/mt -f /dev/rmt/1m online
tar -cvf /dev/rmt/1m
/usr/bin/mt -f /dev/rmt/1m offline
This should work. If not check PATH and see /usr/bin directory for "mt" command if it exists there.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2004 08:57 PM
05-16-2004 08:57 PM
Re: DLT backup problem
what does mt -f /dev/rmt/1m status give before the tar command????
with best wishes
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 01:51 PM
05-17-2004 01:51 PM
Re: DLT backup problem
In before tar command,the same error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 02:20 PM
05-17-2004 02:20 PM
Re: DLT backup problem
mt -f option is not working but mt -t option is working fine.In mt -t option offline command is working fine but online command is not working ,i am giving online error,
Error:
# /usr/bin/mt -t /dev/rmt/0m online
mt: unknown command "online"
This error for both mt -t and mt -f option.
thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 02:58 PM
05-17-2004 02:58 PM
Re: DLT backup problem
Think you are using 11.0 or 10.2 or an older version than that.
what error exactly is mt status giving?? Are you still able to take backup manually?? Or only in the scheduled window??
If yes, there could be some issues with the drive itself. Try swapping with a working drive and check.
with best wishes
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 03:16 PM
05-17-2004 03:16 PM
Re: DLT backup problem
Yes i am using hp-10.20 o.s,Actually in mt -t option online command is not working but offline command is working fine.
Error:
# /usr/bin/mt -t /dev/rmt/0m online
mt: unknown command "online"
#
This error for both mt -t and mt -f options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 03:26 PM
05-17-2004 03:26 PM
Re: DLT backup problem
have a look at the man page for mt and you will find that you don't have any option for making it online....
regds
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 03:44 PM
05-17-2004 03:44 PM
Re: DLT backup problem
yes i already saw the man for mt.
Anyother command is available for online to tape.
thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2004 09:51 PM
05-17-2004 09:51 PM
Re: DLT backup problem
Sorry, actually there is no Online Option with mt command. You are right. But the thing is when you insert the tape in drive it automatically becomes ONLINE. Now after you finish your backup, then to eject the DLT you need to make it offline.
# mt -t
Then if you want to see the current status of the tape then you can give:
# mt -t
But overall i doubt whether your drive has gone bad. Do you see any LED indications on the drive?
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2004 10:08 AM
05-23-2004 10:08 AM
Re: DLT backup problem
In some 20/40 DLT device models that causes a cleaning light to go "on". In others I did not see any indication that anything is wrong until you try to do a real backup.
The solution for me in such case was to run a tape through a diagnostic (anything that would "force" a write to the tape (on some drives simply doing "tar" of a small file two times in a row to the tape is sufficient). Then the tape becomes "reformatted" to the 20/40 capacity (it does not really format the tape - just writes new headers on it).