- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Recovering a file which is backedup using dd c...
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
10-08-2003 10:17 PM
10-08-2003 10:17 PM
Recovering a file which is backedup using dd command
I have taken backup of 10 RAW LOGICAL VOLUMES using the below command
#dd if=/dev/vgsg/rt1.dbf of=/dev/rmt/0mn bs=8k
#dd if=/dev/vgsg/rt2.dbf of=/dev/rmt/0mn bs=8k
#dd if=/dev/vgsg/rt3.dbf of=/dev/rmt/0mn bs=8k
Now i want to restore the rt3.dbf file.Can u pls let me know the procedure for recovering the same.
TIA
Vishwanath.A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:21 PM
10-08-2003 10:21 PM
Re: Recovering a file which is backedup using dd command
dd if=/dev/rmt/0mn of=/dev/vgsg/rt1 bs=8k
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:27 PM
10-08-2003 10:27 PM
Re: Recovering a file which is backedup using dd command
assuming you dd'ed all three files on a single tape (you used no-rewind device file) and want to restore ONLY the third tapefile, you would have to make sure to rewind the tape to the beginning, move forward two tapefiles, then extract the third tapefile.
mt -f /dev/rmt/0m rewind
mt -f /dev/rmt/0mn fsf 2
dd if=/dev/rmt/0mn of=/dev/vgsg/rt3.dbf bs=8k
mt -f /dev/rmt/0m rewind
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:29 PM
10-08-2003 10:29 PM
Re: Recovering a file which is backedup using dd command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:29 PM
10-08-2003 10:29 PM
Re: Recovering a file which is backedup using dd command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:33 PM
10-08-2003 10:33 PM
Re: Recovering a file which is backedup using dd command
revert on further help!