- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file need to recovery from ignite backup
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-24-2009 03:08 AM
11-24-2009 03:08 AM
file need to recovery from ignite backup
I need to restore the crontab file of root from ignite backup tape.
me using below process:--
#mt -t /dev/rmt/0mn fsf 1
#tar -xvf /dev/rmt/0m /var/spool/cron/crontabs/root
but getting below error:-
#Tar: blocksize = 0; broken pipe?
any other way to restore this file
Regards
Viney Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 03:18 AM
11-24-2009 03:18 AM
Re: file need to recovery from ignite backup
Looks like a bad tape so verify the tape.
mt -t /dev/rmt/0m rew
mt -t /dev/rmt/0mn fsf 1
tar -tvf /dev/rmt/0mn
This will list out the table of contents. If you get the TOC then rerun your proceedure adding only
mt -t /dev/rmt/0m rew
...to the beginning.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 03:19 AM
11-24-2009 03:19 AM
Re: file need to recovery from ignite backup
which version of HP-UX do you have ??? HP-UX 11.11, because if you have 11.23/31 you need to "fsf 22"
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 03:26 AM
11-24-2009 03:26 AM
Re: file need to recovery from ignite backup
mt -f /dev/rmt/0mn status # Tape is in its driver ?
mt -f /dev/rmt/0mn rew # Rewind tape
tar -tvf /dev/rmt/0mn > /tmp/ignite.list # Get the list
mt -f /dev/rmt/0mn fsf 1 # Forward space first files for PA-RISC
mt -f /dev/rmt/0mn fsf 22 # Forward space first files for INTEGRITY
mkdir /my_recovery_dir
cd /my_recovery_dir
tar -xvf /dev/rmt/0mn var/spool/cron/crontabs/root
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 03:39 AM
11-24-2009 03:39 AM
Re: file need to recovery from ignite backup
I have tried with two tapes and getting below error
#tar -tvf /dev/rmt/0mn
Tar: blocksize = 0; broken pipe?
OS version-- HP-UX 11.11i
Regards
Viney Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 04:55 AM
11-24-2009 04:55 AM
Re: file need to recovery from ignite backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2009 04:58 AM
11-24-2009 04:58 AM
Re: file need to recovery from ignite backup
after fsf 1
please give the following command
#tar -xvf /dev/rmt/0m var/spool/cron/crontabs/root
Please notice that the first leading / is omitted.
also can check after fsf 1 that
tar tvf /dev/rmt/0mn etc
regards
sujit