- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to backup files to tape?
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 03:35 PM
11-18-2003 03:35 PM
How to backup files to tape?
# ioscan -funC tape
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
tape 0 0/0/1/0.6.0 stape CLAIMED DEVICE HP C1537A
/dev/rmt/0m /dev/rmt/c0t6d0BESTn
/dev/rmt/0mb /dev/rmt/c0t6d0BESTnb
/dev/rmt/0mn /dev/rmt/c0t6d0DDS
/dev/rmt/0mnb /dev/rmt/c0t6d0DDSb
/dev/rmt/c0t6d0BEST /dev/rmt/c0t6d0DDSn
/dev/rmt/c0t6d0BESTb /dev/rmt/c0t6d0DDSnb
#
# fbackup -f /dev/rmt/0m -0i /oradata
fbackup(1004): session begins on Wed Nov 19 12:40:44 2003
fbackup(3038): output file /dev/rmt/0m is not a valid device file for backup
fbackup(3019): would you like to enter a new output file?
n
fbackup(3022): would you like to continue this session?
n
fbackup(3004): writer aborting
fbackup(1002): Backup did not complete : Reader or Writer process exit
#
why can't i backup /oradata to tape?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:44 PM
11-18-2003 03:44 PM
Re: How to backup files to tape?
Check the tape by rewinding etc..like
mt -t /dev/rmt/0m rew
mt -t /dev/rmt/0m stat
take a small tar backup on the tape. If none work with a new tape also it could be you'r drive problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:44 PM
11-18-2003 03:44 PM
Re: How to backup files to tape?
Perhaps the device file got whacked.
If so, rm whats there and insf -e will rebuild it.
Another usual problem. The write protection tab on the tape is locked.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:51 PM
11-18-2003 03:51 PM
Re: How to backup files to tape?
Please try to re-create special (device) files first by running the command below :
# insf -e
After that please try to backup /oradata directory using fbackup command :
# fbackup -vf /dev/rmt/0m -i /oradata
Hope this information can help you.
Best Regards,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 04:37 PM
11-18-2003 04:37 PM
Re: How to backup files to tape?
First thing use the following command to find device
#ioscan -fnC tape
If it is showing correct then use the command
#fbackup -f /dev/rmtn/#m -i /oradata
Still it is not working then it might be any tape drive problem
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2003 12:17 AM
11-19-2003 12:17 AM
Re: How to backup files to tape?
The ioscan appears normal so the device is claimed, so it may be a corrupt device file.
Follow the advice previously give on re-creating the device file and then repate the ioscan.
If the ioscan works then pop a tape into the drive (make sure its not write-protected and the drive does not require cleaning) and then try this :-
mt -t /dev/rmt/0m rewind
If this works then you should be able to backup oradata
Keith