- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to use tape from other system
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-18-2006 09:11 PM
05-18-2006 09:11 PM
Could I use a tape configured in system1 from system2?
Should I share anything?
Note that system1 OS is 11.11 and system2 is 10.20.
Thanks in advance for your help.
Regards,
Carles
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 09:17 PM
05-18-2006 09:17 PM
Re: How to use tape from other system
One way NFS the file system to the server that has tape.
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 09:19 PM
05-18-2006 09:19 PM
Re: How to use tape from other system
first two answers in
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=767959
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 09:23 PM
05-18-2006 09:23 PM
Re: How to use tape from other system
This covers you for application software and user data, but for operating system you need ignite. Ignite will not work on a remote tape drive.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 09:26 PM
05-18-2006 09:26 PM
SolutionWrite a `tar' tape on a remote computer that owns a DAT/DDS drive.
cd /relative_path
tar cvf - . | remsh name -l user "cat - | dd of=/dev/rmt/0m bs=10k"
Restore a `tar' tape from a remote computer that owns a DAT/DDS drive.
cd /relative_path
remsh name -l user dd if=/dev/rmt/0m bs=10k | tar xvf -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 09:55 PM
05-18-2006 09:55 PM
Re: How to use tape from other system
Hi Carles,
Pls check this doc,
Configuring a Remote Tape Drive on HP-UX 10.2
at
http://www.pimpworks.org/hp/remotetape.html
aslo see this,
http://www.uwsg.iu.edu/usail/backups/backup/
Hope this helps,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 10:28 PM
05-18-2006 10:28 PM
Re: How to use tape from other system
you can start 'fbackup' also in 'SAM'.
So you can test in 'Backup and Recovery' under 'Actions' if the remote tape is available (Use Remote Backup Device').
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 11:08 PM
05-18-2006 11:08 PM
Re: How to use tape from other system
finally I used following command:
tar cvf - . | remsh system2 "cd /tmp/ ; tar xvf - . | dd of=/dev/rmt/0m bs=10k"
On this way I backup all system files frm system1 to system2 separatelly instead an unique TAR file.
Thanks to all for your help!
Regards,
Carles